Skip to content

Commit b6be3c5

Browse files
authored
V14 QA Decreased retry amount (#16423)
* Decreased retry once again * Changed fallback value to 1
1 parent 1f7b704 commit b6be3c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Umbraco.Tests.AcceptanceTest/playwright.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default defineConfig({
1919
/* Fail the build on CI if you accidentally left test.only in the source code. */
2020
forbidOnly: !!process.env.CI,
2121
/* Retry on CI only */
22-
retries: process.env.CI ? 3 : 2,
22+
retries: process.env.CI ? 2 : 1,
2323
// We don't want to run parallel, as tests might differ in state
2424
workers: 1,
2525
/* Reporter to use. See https://playwright.dev/docs/test-reporters */

0 commit comments

Comments
 (0)