Files
bun.sh/test/js/bun/spawn/does-not-hang.js
2024-11-13 15:23:52 -08:00

8 lines
118 B
JavaScript

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