Files
bun.sh/test/js/bun/spawn/does-not-hang.js
2024-06-27 14:56:07 -07:00

8 lines
121 B
JavaScript

import { shellExe } from "harness";
const s = Bun.spawn({
cmd: [shellExe(), "-c", "sleep", "999999"],
});
s.unref();