You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: playwright.config.ts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,8 +9,8 @@ export default defineConfig({
9
9
fullyParallel: false,
10
10
/* Fail the build on CI if you accidentally left test.only in the source code. */
11
11
forbidOnly: Boolean(process.env.CI),
12
-
/* Retry on CI only */
13
-
retries: process.env.CI ? 2 : 0,
12
+
/* Retry on CI only - skipped for now as during exploration it is expected for lot of tests to fail and retries will slow down seeing tests that do pass */
13
+
retries: process.env.CI ? 0 : 0,
14
14
/* Limit the number of workers on CI, use default locally */
0 commit comments