Tests for registry-cli #32

Closed
0xmuralik wants to merge 23 commits from murali/tests into main
Showing only changes of commit 30861621cf - Show all commits

View File

@ -1,7 +1,11 @@
const { execSync } = require("child_process"); const { execSync } = require("child_process");
export const cliTest = (args: any) => { export const cliTest = (args: any) => {
return JSON.parse(execSync(`./bin/laconic cns ${args}`)); try{
return JSON.parse(execSync(`./bin/laconic cns ${args}`));
}catch(err){
return(err)
}
}; };
export function createBond(type: string, quantity: string):string{ export function createBond(type: string, quantity: string):string{