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 55ff8e5 commit f3d45c0Copy full SHA for f3d45c0
packages/e2e-tests/test-applications/sveltekit/playwright.config.ts
@@ -54,14 +54,14 @@ const config: PlaywrightTestConfig = {
54
55
/* Run your local dev server before starting the tests */
56
webServer: [
57
- {
58
- command: testEnv === 'development' ? `yarn dev --port ${port}` : `yarn preview --port ${port}`,
59
- port,
60
- },
61
{
62
command: 'yarn ts-node --esm start-event-proxy.ts',
63
port: Number(process.env.BASE_PORT) + Number(process.env.PORT_MODULO) + Number(process.env.PORT_GAP),
64
},
+ {
+ command: testEnv === 'development' ? `yarn dev --port ${port}` : `yarn preview --port ${port}`,
+ port,
+ },
65
],
66
};
67
0 commit comments