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 8796cfc commit fd2a68cCopy full SHA for fd2a68c
.github/workflows/ci.yml
@@ -72,10 +72,6 @@ jobs:
72
run: |
73
npx playwright install --with-deps
74
75
- - name: Start the server
76
- run: |
77
- npm run start &
78
-
79
- name: Run Playwright tests
80
81
npm run test:e2e
playwright.config.ts
@@ -47,4 +47,10 @@ export default defineConfig({
47
use: { ...devices["Desktop Safari"] },
48
},
49
],
50
+
51
+ webServer: {
52
+ command: "npm run start",
53
+ url: "http://127.0.0.1:5173",
54
+ reuseExistingServer: !process.env.CI,
55
+ },
56
});
0 commit comments