Skip to content

Commit

Permalink
edit config
Browse files Browse the repository at this point in the history
  • Loading branch information
perco12 committed Aug 23, 2024
1 parent 1bcad0f commit be9d024
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ module.exports = defineConfig({
forbidOnly: !!process.env.CI,
/* Retry on CI only */
retries: process.env.CI ? 3 : 0,
reportSlowTests: { max: 0, threshold: 400001 },

// retries: 1,
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 60 : undefined,
Expand Down Expand Up @@ -92,7 +90,6 @@ module.exports = defineConfig({
ignoreHTTPSErrors: true,
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
trace: 'on',
bypassCSP: true,
headless: true
bypassCSP: true
}
});

0 comments on commit be9d024

Please sign in to comment.