Skip to content

Commit

Permalink
Adjust timeouts for e2e CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Xon committed Sep 5, 2024
1 parent 6cdcc5f commit 3839cec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ const config: PlaywrightTestConfig = {
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: process.env.CI ? [['dot'], ['blob']] : 'line',
timeout: 2000,
timeout: process.env.CI ? 5000 : 1000,
expect : {
timeout: 500,
timeout: process.env.CI ? 1000 : 500,
},
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
Expand Down

0 comments on commit 3839cec

Please sign in to comment.