Skip to content

Commit a371a5f

Browse files
authored
chore: make fullyParallel: true by default (#27)
1 parent 08fc7c3 commit a371a5f

File tree

6 files changed

+471
-4735
lines changed

6 files changed

+471
-4735
lines changed

assets/playwright-ct.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ const config = {
1111
snapshotDir: './__snapshots__',
1212
/* Maximum time one test can run for. */
1313
timeout: 10 * 1000,
14+
/* Run tests in files in parallel */
15+
fullyParallel: true,
1416
/* Fail the build on CI if you accidentally left test.only in the source code. */
1517
forbidOnly: !!process.env.CI,
1618
/* Retry on CI only */

assets/playwright-ct.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ const config: PlaywrightTestConfig = {
1010
snapshotDir: './__snapshots__',
1111
/* Maximum time one test can run for. */
1212
timeout: 10 * 1000,
13+
/* Run tests in files in parallel */
14+
fullyParallel: true,
1315
/* Fail the build on CI if you accidentally left test.only in the source code. */
1416
forbidOnly: !!process.env.CI,
1517
/* Retry on CI only */

assets/playwright.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ const config = {
2323
*/
2424
timeout: 5000
2525
},
26+
/* Run tests in files in parallel */
27+
fullyParallel: true,
2628
/* Fail the build on CI if you accidentally left test.only in the source code. */
2729
forbidOnly: !!process.env.CI,
2830
/* Retry on CI only */

assets/playwright.config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ const config: PlaywrightTestConfig = {
2121
*/
2222
timeout: 5000
2323
},
24+
/* Run tests in files in parallel */
25+
fullyParallel: true,
2426
/* Fail the build on CI if you accidentally left test.only in the source code. */
2527
forbidOnly: !!process.env.CI,
2628
/* Retry on CI only */

0 commit comments

Comments
 (0)