From d7509c9f632e51460041f5602e2a8a4455e2fe6f Mon Sep 17 00:00:00 2001 From: Claudio Costa Date: Tue, 17 Sep 2024 15:51:12 -0600 Subject: [PATCH] Bump e2e timeouts to address flakyness (#862) --- e2e/playwright.config.ts | 2 +- e2e/tests/join_call.spec.ts | 2 +- e2e/tests/media.spec.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index b99c63c2..1cea8819 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -9,7 +9,7 @@ const config: PlaywrightTestConfig = { retries: 1, workers: 4, fullyParallel: true, - timeout: 120 * 1000, + timeout: 150 * 1000, expect: { timeout: 60 * 1000, toMatchSnapshot: { diff --git a/e2e/tests/join_call.spec.ts b/e2e/tests/join_call.spec.ts index c2404e47..9a584126 100644 --- a/e2e/tests/join_call.spec.ts +++ b/e2e/tests/join_call.spec.ts @@ -146,7 +146,7 @@ test.describe('join call', () => { }); test('multiple sessions per user', async () => { - test.setTimeout(180000); + test.setTimeout(200000); // start a call const sessionAPage = await startCall(userStorages[1]); diff --git a/e2e/tests/media.spec.ts b/e2e/tests/media.spec.ts index 8dde827f..8010019a 100644 --- a/e2e/tests/media.spec.ts +++ b/e2e/tests/media.spec.ts @@ -126,7 +126,7 @@ test.describe('screen sharing', () => { }); test('av1', async ({page}) => { - test.setTimeout(150000); + test.setTimeout(180000); // Enabling AV1 await apiSetEnableAV1(true);