Skip to content

Commit 776abe8

Browse files
Increase E2E retries in CI
1 parent 132d65b commit 776abe8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

playwright.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export default defineConfig({
1616
/* Fail the build on CI if you accidentally left test.only in the source code. */
1717
forbidOnly: !!process.env.CI,
1818
/* Retry on CI only */
19-
retries: process.env.CI ? 5 : 0,
20-
repeatEach: process.env.CI ? 5 : 1,
19+
retries: process.env.CI ? 5 : 1,
20+
repeatEach: process.env.CI ? 25 : 1,
2121
/* Opt out of parallel tests on CI. */
2222
workers: process.env.CI ? 4 : undefined,
2323
/* Reporter to use. See https://playwright.dev/docs/test-reporters */

0 commit comments

Comments
 (0)