🔧 (playwright.config.ts): reduce workers to 1 for CI to avoid resource contention
This commit is contained in:
parent
f22b2b2a23
commit
6096c8b73f
1 changed files with 1 additions and 1 deletions
|
|
@ -21,7 +21,7 @@ export default defineConfig({
|
|||
/* Retry on CI only */
|
||||
retries: process.env.CI ? 2 : 0,
|
||||
/* Opt out of parallel tests on CI. */
|
||||
workers: 5,
|
||||
workers: 1,
|
||||
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
||||
timeout: 120 * 1000,
|
||||
// reporter: [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue