From f752da2928104aa8998a56673799f74588428a71 Mon Sep 17 00:00:00 2001 From: Dawid Urbas Date: Wed, 17 Jul 2024 18:19:53 +0200 Subject: [PATCH] Fix timeout --- tests/index.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/index.test.ts b/tests/index.test.ts index d03ca4b..4091d8f 100644 --- a/tests/index.test.ts +++ b/tests/index.test.ts @@ -44,10 +44,10 @@ describe('End-to-End Tests for Extension and Client', () => { throw new Error('EXTENSION_ID is not set'); } await setupFlowTest(browser, EXTENSION_ID); - }); + }, 10000); it('should allow the client to interact with the extension after setup', async () => { await clientInteractionTest(browser); - }); + }, 10000); it('should prevent the malicious page from signing messages', async () => { await preventSignatureFromOtherOrigin(browser); });