Skip to content

Commit 3836b50

Browse files
author
Daniel Liburd
committed
Temporarily disable retries for e2e tests
Playwright will automatically mark a test as flaky if it passes on second retry. We currently have a suite of reports e2e tests that are temporarily broken, which have been flagged as flaky and ultimately passes the build. We want these to remain visible until the fix for the tests are in the API, so as them breaking doesn't stop us from deploying to dev, we'll temporarily turn off retries for better visibility.
1 parent b35db87 commit 3836b50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default defineConfig<TestOptions>({
77
outputDir: './e2e-tests/test_results',
88
fullyParallel: false,
99
forbidOnly: !!process.env.CI,
10-
retries: process.env.CI ? 2 : 0,
10+
retries: 0,
1111
maxFailures: 1,
1212
workers: 1,
1313
reporter: [['html', { outputFolder: './e2e-tests/playwright-report/index.html' }]],

0 commit comments

Comments
 (0)