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 50cf21a commit a039505Copy full SHA for a039505
dev-packages/e2e-tests/test-applications/nextjs-15/playwright.config.mjs
@@ -5,15 +5,9 @@ if (!testEnv) {
5
throw new Error('No test env defined');
6
}
7
8
-const config = getPlaywrightConfig(
9
- {
10
- startCommand: testEnv === 'development' ? 'pnpm next dev -p 3030' : 'pnpm next start -p 3030',
11
- port: 3030,
12
- },
13
14
- // This comes with the risk of tests leaking into each other but the tests run quite slow so we should parallelize
15
- workers: '100%',
16
17
-);
+const config = getPlaywrightConfig({
+ startCommand: testEnv === 'development' ? 'pnpm next dev -p 3030' : 'pnpm next start -p 3030',
+ port: 3030,
+});
18
19
export default config;
0 commit comments