We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb74f26 commit 4864566Copy full SHA for 4864566
2 files changed
package.json
@@ -19,6 +19,7 @@
19
"fmt:check": "oxfmt --check",
20
"lint": "oxlint",
21
"postinstall": "wxt prepare",
22
+ "e2e:preview": "vite preview --host localhost --port 51234 --strictPort",
23
"test:e2e": "pnpm build && playwright test",
24
"wxt": "wxt",
25
"zip": "wxt zip",
playwright.config.ts
@@ -63,7 +63,7 @@ export default defineConfig({
63
],
64
timeout: process.env.CI ? 30_000 : 5_000,
65
webServer: {
66
- command: "node e2e/serve-fixtures.mjs 51234",
+ command: "pnpm e2e:preview",
67
url: "http://localhost:51234/inspector-playground.html",
68
reuseExistingServer: true,
69
timeout: 60_000,
0 commit comments