Skip to content

Commit 3dd355e

Browse files
committed
Restore Playwright config
1 parent 48331e6 commit 3dd355e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/playground/website/playwright/playwright.config.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const playwrightConfig: PlaywrightTestConfig = {
1111
fullyParallel: false,
1212
/* Fail the build on CI if you accidentally left test.only in the source code. */
1313
forbidOnly: !!process.env.CI,
14-
retries: 0,
14+
retries: 3,
1515
workers: 3,
1616
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
1717
reporter: [['html'], ['list', { printSteps: true }]],
@@ -40,10 +40,10 @@ export const playwrightConfig: PlaywrightTestConfig = {
4040
},
4141
},
4242

43-
// {
44-
// name: 'firefox',
45-
// use: { ...devices['Desktop Firefox'] },
46-
// },
43+
{
44+
name: 'firefox',
45+
use: { ...devices['Desktop Firefox'] },
46+
},
4747

4848
// Safari runner is disabled in CI – it used to be enabled but the tests
4949
// failed randomly without any obvious reason.

0 commit comments

Comments
 (0)