Skip to content

Commit

Permalink
Bump e2e timeouts to address flakyness (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
streamer45 authored Sep 17, 2024
1 parent f6ea336 commit d7509c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion e2e/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const config: PlaywrightTestConfig = {
retries: 1,
workers: 4,
fullyParallel: true,
timeout: 120 * 1000,
timeout: 150 * 1000,
expect: {
timeout: 60 * 1000,
toMatchSnapshot: {
Expand Down
2 changes: 1 addition & 1 deletion e2e/tests/join_call.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
Expand Down
2 changes: 1 addition & 1 deletion e2e/tests/media.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ test.describe('screen sharing', () => {
});

test('av1', async ({page}) => {
test.setTimeout(150000);
test.setTimeout(180000);

// Enabling AV1
await apiSetEnableAV1(true);
Expand Down

0 comments on commit d7509c9

Please sign in to comment.