Skip to content

Commit

Permalink
E2E: enable Firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
satelllte committed Oct 15, 2023
1 parent 3f9b950 commit 4e4709e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions apps/docs/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default defineConfig({
/* Run tests in files in parallel */
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
forbidOnly: Boolean(process.env.CI),
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
Expand Down Expand Up @@ -40,15 +40,14 @@ export default defineConfig({
name: 'chrome-desktop',
use: {...devices['Desktop Chrome']},
},
// TODO: fix it in GitHub Actions, for some reason it doesn't run there properly
// {
// name: 'firefox-desktop',
// use: {...devices['Desktop Firefox']},
// },
{
name: 'safari-desktop',
use: {...devices['Desktop Safari']},
},
{
name: 'firefox-desktop',
use: {...devices['Desktop Firefox']},
},
{
name: 'chrome-mobile',
use: {...devices['Pixel 5']},
Expand Down

0 comments on commit 4e4709e

Please sign in to comment.