We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cc6cef0 + 901cad7 commit 01555edCopy full SHA for 01555ed
dotcom-rendering/playwright.config.ts
@@ -11,9 +11,9 @@ export const PORT = isDev ? 3030 : 9000;
11
*/
12
export default defineConfig({
13
testDir: './playwright/tests',
14
- // Don't run tests _within_ files in parallel as this causes flakiness locally - investigating
+ // Don't run tests _within_ files in parallel locally as this causes flakiness
15
// Test files still run in parallel as per the number of workers set below
16
- fullyParallel: false,
+ fullyParallel: !!process.env.CI,
17
// Fail the build on CI if you accidentally left test.only in the source code
18
forbidOnly: !!process.env.CI,
19
// Retry on CI only
0 commit comments