From ec08686eb6a86065e248b8c2a6bd5c7e3028ffe7 Mon Sep 17 00:00:00 2001 From: aman035 Date: Tue, 3 Oct 2023 13:36:07 +0530 Subject: [PATCH] docs: fix tests --- .../restapi/tests/lib/pushNotification/delegate.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/restapi/tests/lib/pushNotification/delegate.test.ts b/packages/restapi/tests/lib/pushNotification/delegate.test.ts index 71a723cd2..bc43c9986 100644 --- a/packages/restapi/tests/lib/pushNotification/delegate.test.ts +++ b/packages/restapi/tests/lib/pushNotification/delegate.test.ts @@ -112,7 +112,7 @@ describe('PushAPI.delegate functionality', () => { const res = await userKate.channel.delegate.remove( 'eip155:5:0x74415Bc4C4Bf4Baecc2DD372426F0a1D016Fa924' ); - console.log(res); + console.log(res); expect(res).not.null; }, 100000000); @@ -124,7 +124,7 @@ describe('PushAPI.delegate functionality', () => { ).to.Throw; }); - it.only('With viem signer: Should remove delegate', async () => { + it('With viem signer: Should remove delegate', async () => { // create polygon mumbai provider const provider = new ethers.providers.JsonRpcProvider( 'https://rpc-mumbai.maticvigil.com' @@ -138,7 +138,7 @@ describe('PushAPI.delegate functionality', () => { const res = await userKate.channel.delegate.remove( 'eip155:80001:0x74415Bc4C4Bf4Baecc2DD372426F0a1D016Fa924' ); - // console.log(res); + // console.log(res); expect(res).not.null; }, 10000000); });