From 86e0916fa3375455259097a3d58a6816951a31f2 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 23 Jan 2026 07:51:57 +0000 Subject: [PATCH] fix: allow windows spawn in test parallel --- scripts/test-parallel.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/test-parallel.mjs b/scripts/test-parallel.mjs index 82261fe73..3c8ad0a57 100644 --- a/scripts/test-parallel.mjs +++ b/scripts/test-parallel.mjs @@ -20,6 +20,7 @@ const run = (entry) => const child = spawn(pnpm, entry.args, { stdio: "inherit", env: { ...process.env, VITEST_GROUP: entry.name }, + shell: process.platform === "win32", }); children.add(child); child.on("exit", (code, signal) => {