mirror of
https://github.com/denoland/deno.git
synced 2024-12-11 10:07:54 -05:00
89d0f0c4e3
Fixes #15217.
6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
const child = new Deno.Command("deno", {
|
|
args: ["eval", "await new Promise(r => setTimeout(r, 2000))"],
|
|
stdout: "null",
|
|
stderr: "null",
|
|
}).spawn();
|
|
child.kill("SIGTERM");
|