1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/tests/unit_node/testdata/child_process_stdio_012.js

17 lines
414 B
JavaScript
Raw Normal View History

import childProcess from "node:child_process";
import process from "node:process";
import * as path from "node:path";
import { fileURLToPath } from "node:url";
const script = path.join(
path.dirname(fileURLToPath(import.meta.url)),
"node_modules",
"foo",
"index.js",
);
const child = childProcess.spawn(process.execPath, [script], {
stdio: [0, 1, 2],
});
child.on("close", () => console.log("close"));