Skip to content

Commit

Permalink
test: increase timeout CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TessaViergever committed Jan 20, 2025
1 parent e45ddda commit f7cf122
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ export default defineConfig({
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
timeout: 3000,
/* Shorter test time for dev */
timeout: process.env.CI ? 30000 : 15000,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
Expand Down

0 comments on commit f7cf122

Please sign in to comment.