From f791ce828d23a098b07928fd827b43ac0596594c Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Wed, 17 Jan 2024 17:06:23 +0530 Subject: [PATCH] Add debug comments --- src/naming.test.ts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/naming.test.ts b/src/naming.test.ts index 9d82c3d..caae338 100644 --- a/src/naming.test.ts +++ b/src/naming.test.ts @@ -19,6 +19,8 @@ const namingTests = () => { let watcherId: string; beforeAll(async () => { + console.log('running parent beforeAll') + registry = new Registry(gqlEndpoint, restEndpoint, chainId); // Create bond. @@ -38,6 +40,8 @@ const namingTests = () => { ) watcherId = result.data.id; + + console.log('done running parent beforeAll') }); describe('Authority tests', () => { @@ -52,10 +56,13 @@ const namingTests = () => { let crn: string; beforeAll(async () => { + console.log('running beforeAll') + authorityName = `laconic-${Date.now()}`; crn = `crn://${authorityName}/app/test`; await registry.reserveAuthority({ name: authorityName }, privateKey, fee); + console.log('done running beforeAll') }) test('Lookup authority.', async () => {