diff --git a/.gitignore b/.gitignore index 3cd86b4..b4c4094 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ dist example/.cache/ example/.parcel-cache/ /relay-data/ +/coverage/ \ No newline at end of file diff --git a/test/connect.test.ts b/test/connect.test.ts index bdd90a9..56a64ef 100644 --- a/test/connect.test.ts +++ b/test/connect.test.ts @@ -22,7 +22,7 @@ class MobileHandler extends NostrRPC { } } -describe.skip('Nostr Connect', () => { +describe('Nostr Connect', () => { it('connect', async () => { const testHandler = jest.fn(); @@ -70,7 +70,7 @@ describe.skip('Nostr Connect', () => { // send the get_public_key message to the mobile app from the web const pubkey = await connect.getPublicKey(); - expect(pubkey).toBe(webPK); + expect(pubkey).toBe(mobilePK); }); });