fix(test): use shell spawn for windows test runner

This commit is contained in:
Vincent Koc
2026-04-03 21:36:48 +09:00
parent 01a163c7f3
commit 7ede711cae

View File

@@ -23,6 +23,7 @@ const releaseLockOnce = () => {
const child = spawn(command, vitestArgs, {
stdio: "inherit",
env: process.env,
shell: process.platform === "win32",
});
child.on("exit", (code, signal) => {