Skip to content

Commit

Permalink
docs: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Aman035 committed Oct 3, 2023
1 parent bb487a6 commit ec08686
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/restapi/tests/lib/pushNotification/delegate.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand All @@ -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'
Expand All @@ -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);
});
Expand Down

0 comments on commit ec08686

Please sign in to comment.