refactor helper.ts/createAuthority

This commit is contained in:
0xmuralik 2023-03-31 23:49:16 +05:30
parent b76f52013b
commit 2cc5ae6245

View File

@ -20,12 +20,15 @@ export function createRecord(filepath: string, bondId: string):string{
return resp.id return resp.id
} }
export function createAuthority(name:string):string{ export function createAuthority(name:string):any{
const resp=cliTest("authority reserve "+name); const resp=cliTest("authority reserve "+name);
expect(resp).toBeDefined; expect(resp).toBeDefined;
expect(resp.success).toBeTruthy();
return resp
}
const jsonResp = JSON.parse(cliTest("authority whois "+name)) export function getAuctionId(name:string):string{
const jsonResp = cliTest("authority whois "+name)
expect(jsonResp).toBeDefined; expect(jsonResp).toBeDefined;
return jsonResp[0].auction.id return jsonResp[0].auction.id
} }