Skip to content

Commit

Permalink
do not run tests in parallel (timing out)
Browse files Browse the repository at this point in the history
  • Loading branch information
uiii committed May 26, 2023
1 parent fc791d5 commit fd803bc
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 @@ -27,8 +27,8 @@ const config: Config = {
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 : undefined,
/* Opt out of parallel tests. */
workers: 1,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [
["html", {
Expand Down

0 comments on commit fd803bc

Please sign in to comment.