Skip to content

Commit

Permalink
try removing parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeldking committed Feb 13, 2025
1 parent 76126f8 commit 4403026
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ export default defineConfig({
globalSetup: require.resolve("./global-setup"),
// CI runs are slower and need a higher timeout.
timeout: process.env.CI ? 120_000 : 30000,
// Limit the number of workers on CI, use default locally
workers: process.env.CI ? 1 : undefined,
testDir: "./tests",
/* Run tests in files in parallel */
fullyParallel: true,
Expand Down

0 comments on commit 4403026

Please sign in to comment.