Skip to content

Commit

Permalink
Return back parallelism. All tests are passing
Browse files Browse the repository at this point in the history
  • Loading branch information
l-you committed Jan 22, 2024
1 parent b6bdd67 commit 4b15d1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ export default defineConfig({
},
testDir: './__tests__',
/* Run tests in files in parallel */
fullyParallel: false,
fullyParallel: true,
/* Fail the build on CI if you accidentally left test.only in the source code. */
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: undefined,
workers: process.env.CI ? 1 : undefined,

/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [ ['html', { open: 'never' }] ],
Expand Down

0 comments on commit 4b15d1e

Please sign in to comment.