Skip to content

test(sveltekit): Add e2e build test for sveltekit #7881

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Apr 27, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
flip the command
  • Loading branch information
AbhiPrasad committed Apr 27, 2023
commit f3d45c0b99ced9a7db7983d69c30f66b0af7750a
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ const config: PlaywrightTestConfig = {

/* Run your local dev server before starting the tests */
webServer: [
{
command: testEnv === 'development' ? `yarn dev --port ${port}` : `yarn preview --port ${port}`,
port,
},
{
command: 'yarn ts-node --esm start-event-proxy.ts',
port: Number(process.env.BASE_PORT) + Number(process.env.PORT_MODULO) + Number(process.env.PORT_GAP),
},
{
command: testEnv === 'development' ? `yarn dev --port ${port}` : `yarn preview --port ${port}`,
port,
},
],
};

Expand Down