windows doesnt like running js with shebangs

This commit is contained in:
Meghan Denny
2024-10-09 21:36:19 -07:00
parent f1ed5a5732
commit dc2f1addf0

View File

@@ -588,8 +588,8 @@ async function spawnCitgmTest(execPath, testPath) {
};
const result = await spawnSafe({
command: resolve(join(import.meta.dirname, "run-citgm-test.ts")),
args: [execPath, testPath],
command: execPath,
args: [resolve(join(import.meta.dirname, "run-citgm-test.ts")), execPath, testPath],
cwd: cwd,
timeout: timeout,
env: bunEnv,