Skip to content

Commit

Permalink
config angepasst, maxFailures=3, retires=1 (#49)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobmadp authored Aug 19, 2024
1 parent 99571e7 commit 7449b24
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 @@ -11,7 +11,8 @@ export default defineConfig({
expect: { timeout: 10000 },
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
retries: process.env.CI ? 1 : 0,
maxFailures: 3,
workers: process.env.CI ? 1 : undefined,
reporter: [["html"]],
use: {
Expand Down

0 comments on commit 7449b24

Please sign in to comment.