We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d85efa commit 9423047Copy full SHA for 9423047
2 files changed
package.json
@@ -7,7 +7,7 @@
7
"test:headed": "playwright test --headed",
8
"test:debug": "playwright test --debug",
9
"test:ui": "playwright test --ui",
10
- "serve": "python3 -m http.server 8000"
+ "serve": "python3 -m http.server 8000 --directory site"
11
},
12
"keywords": [
13
"balatro",
playwright.config.js
@@ -56,7 +56,7 @@ module.exports = defineConfig({
56
// Auto-start local dev server before running tests
57
webServer: {
58
// Use Python's built-in HTTP server (no dependencies needed)
59
- command: 'python3 -m http.server 8000',
+ command: 'python3 -m http.server 8000 --directory site',
60
url: 'http://localhost:8000',
61
reuseExistingServer: !process.env.CI,
62
// Give the server time to start
0 commit comments