Skip to content

Commit

Permalink
chore: let "retries" really work in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Leksat committed Oct 17, 2023
1 parent c21d554 commit 54c5aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/tests/silverback-gatsby/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const config: PlaywrightTestConfig = {
],
fullyParallel: true,
forbidOnly: !!process.env.CI,
maxFailures: 1,
maxFailures: process.env.CI ? 0 : 1,
retries: process.env.CI ? 1 : 0,
use: {
trace: 'on-first-retry',
Expand Down

0 comments on commit 54c5aad

Please sign in to comment.