fix(test): route raw vitest scripts through wrapper

This commit is contained in:
Vincent Koc
2026-04-12 04:56:21 +01:00
parent d3cf1cc323
commit 8cba14241c
3 changed files with 4 additions and 4 deletions

View File

@@ -13,6 +13,6 @@ const args = [
"--maxWorkers=1",
];
execFileSync("vitest", args, {
execFileSync(process.execPath, ["scripts/run-vitest.mjs", ...args], {
stdio: "inherit",
});