Skip to content

Commit

Permalink
👷 Fine tune some test suite parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed May 24, 2024
1 parent bc50353 commit b84e59b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ module.exports = defineConfig({
/* Retry on CI only */
retries: process.env.CI ? 2 : 0,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
workers: process.env.CI ? 2 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: 'html',
reporter: [["list"], ["html"], ...(process.env.CI ? [["github"]] : [])],

/* Screenshot settings */
snapshotPathTemplate: '{testDir}/screenshots/{testFilePath}/{testName}/{arg}{ext}',
Expand Down

0 comments on commit b84e59b

Please sign in to comment.