We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 182ff9c commit 8abaaa1Copy full SHA for 8abaaa1
apps/nextjs/playwright.config.ts
@@ -19,7 +19,7 @@ export default defineConfig({
19
},
20
],
21
webServer: {
22
- command: "pnpm dev",
+ command: process.env.CI ? "pnpm start" : "pnpm dev",
23
url: "http://localhost:3000",
24
reuseExistingServer: !process.env.CI,
25
timeout: 120000,
turbo.json
@@ -41,7 +41,7 @@
41
"cache": false
42
43
"test:e2e": {
44
- "dependsOn": ["^build"],
+ "dependsOn": ["build"],
45
"cache": false,
46
"env": ["DATABASE_URL"]
47
0 commit comments