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.
1 parent b59402a commit 568ff3dCopy full SHA for 568ff3d
tests/library/playwright.config.ts
@@ -79,6 +79,8 @@ if (mode === 'service2') {
79
};
80
}
81
82
+process.env.DEBUG = 'pw:browser';
83
+
84
const config: Config<PlaywrightWorkerOptions & PlaywrightTestOptions & TestModeWorkerOptions> = {
85
testDir,
86
outputDir,
@@ -90,7 +92,7 @@ const config: Config<PlaywrightWorkerOptions & PlaywrightTestOptions & TestModeW
90
92
globalTimeout: 5400000,
91
93
workers: process.env.CI ? 2 : undefined,
94
fullyParallel: !process.env.CI,
- forbidOnly: !!process.env.CI,
95
+ forbidOnly: false,
96
retries: process.env.CI ? 3 : 0,
97
reporter: reporters(),
98
projects: [],
0 commit comments