Skip to content

Commit f3d45c0

Browse files
committed
flip the command
1 parent 55ff8e5 commit f3d45c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/e2e-tests/test-applications/sveltekit/playwright.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ const config: PlaywrightTestConfig = {
5454

5555
/* Run your local dev server before starting the tests */
5656
webServer: [
57-
{
58-
command: testEnv === 'development' ? `yarn dev --port ${port}` : `yarn preview --port ${port}`,
59-
port,
60-
},
6157
{
6258
command: 'yarn ts-node --esm start-event-proxy.ts',
6359
port: Number(process.env.BASE_PORT) + Number(process.env.PORT_MODULO) + Number(process.env.PORT_GAP),
6460
},
61+
{
62+
command: testEnv === 'development' ? `yarn dev --port ${port}` : `yarn preview --port ${port}`,
63+
port,
64+
},
6565
],
6666
};
6767

0 commit comments

Comments
 (0)