mirror of
https://github.com/denoland/deno.git
synced 2024-11-24 15:19:26 -05:00
e0b9c745c1
This PR is part of #22907 --------- Signed-off-by: HasanAlrimawi <141642411+HasanAlrimawi@users.noreply.github.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
33 lines
978 B
TypeScript
33 lines
978 B
TypeScript
Deno.test("output", async () => {
|
|
await new Deno.Command(Deno.execPath(), {
|
|
args: ["eval", "console.log(0); console.error(1);"],
|
|
}).spawn().status;
|
|
new Deno.Command(Deno.execPath(), {
|
|
args: ["eval", "console.log(2); console.error(3);"],
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
}).outputSync();
|
|
await new Deno.Command(Deno.execPath(), {
|
|
args: ["eval", "console.log(4); console.error(5);"],
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
}).output();
|
|
const c = new Deno.Command(Deno.execPath(), {
|
|
args: ["eval", "console.log(6); console.error(7);"],
|
|
stdout: "inherit",
|
|
stderr: "inherit",
|
|
}).spawn();
|
|
await c.status;
|
|
const worker = new Worker(
|
|
import.meta.resolve("./captured_output.worker.ts"),
|
|
{ type: "module" },
|
|
);
|
|
|
|
// ensure worker output is captured
|
|
const response = new Promise<void>((resolve) =>
|
|
worker.onmessage = () => resolve()
|
|
);
|
|
worker.postMessage({});
|
|
await response;
|
|
worker.terminate();
|
|
});
|