Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions packages/app/script/e2e-local.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const runnerEnv = {
PLAYWRIGHT_PORT: String(webPort),
} satisfies Record<string, string>

const seed = Bun.spawn(["bun", "script/seed-e2e.ts"], {
const seed = Bun.spawn([process.execPath, "script/seed-e2e.ts"], {
cwd: nikcliDir,
env: serverEnv,
stdout: "inherit",
Expand Down Expand Up @@ -116,7 +116,7 @@ const result = await (async () => {
try {
await waitForHealth(`http://127.0.0.1:${serverPort}/global/health`)

const runner = Bun.spawn(["bun", "test:e2e", ...extraArgs], {
const runner = Bun.spawn([process.execPath, "test:e2e", ...extraArgs], {
cwd: appDir,
env: runnerEnv,
stdout: "inherit",
Expand Down
Loading