0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/testdata/no_prompt.ts
2022-05-18 22:00:11 +02:00

10 lines
191 B
TypeScript

new Worker("data:,setTimeout(() => Deno.exit(2), 200)", { type: "module" });
try {
await Deno.spawn("ps", {
stdout: "inherit",
stderr: "inherit",
});
} catch {
Deno.exit(0);
}