Skip to content

Commit

Permalink
updated playwright config for parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyAsh5114 committed Dec 20, 2023
1 parent a7190bc commit 0a731d5
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 @@ -17,8 +17,8 @@ export default defineConfig({
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : 1,
/* Opt out of parallel tests on CI. Max 6, only 6 test account present */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: "html",
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
Expand Down

0 comments on commit 0a731d5

Please sign in to comment.