diff --git a/src/agent-tools/evaluateInEngine262.ts b/src/agent-tools/evaluateInEngine262.ts index a029e8e..1f9de3e 100644 --- a/src/agent-tools/evaluateInEngine262.ts +++ b/src/agent-tools/evaluateInEngine262.ts @@ -132,8 +132,8 @@ function executeInChildProcess( "evaluateInEngine262.runner.mjs", ); - // Spawn child process - const child = spawn("node", [runnerPath], { + // Spawn child process using Bun + const child = spawn("bun", [runnerPath], { stdio: ["pipe", "pipe", "pipe"], killSignal: "SIGKILL", // Force kill, can't be blocked });