Skip to content

Commit

Permalink
fix(playwright): use fixed retry & worker count
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Oct 15, 2024
1 parent 3c9178c commit 242b882
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 @@ -10,8 +10,8 @@ export default defineConfig({
testDir: "./playwright",
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 3 : undefined,
retries: 2,
workers: 3,
reporter: "html",
outputDir: "playwright/results/",

Expand Down

0 comments on commit 242b882

Please sign in to comment.