Skip to content

Commit

Permalink
Merge branch 'master' into DFPL-2324
Browse files Browse the repository at this point in the history
  • Loading branch information
AlistairEdwinOsborne committed Jun 18, 2024
2 parents ed797f7 + c66cb3f commit 82cd1d8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ export default defineConfig({
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 1 : 0,
retries: process.env.CI ? 2 : 0,
/*build fails when reaches 35 failed test - fail fast*/
maxFailures: process.env.CI ? 35 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 4 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
Expand Down

0 comments on commit 82cd1d8

Please sign in to comment.