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 () => {