summaryrefslogtreecommitdiff
path: root/tests/unit_node/testdata/child_process_stdio.js
blob: b13b0956233305b6b9cd8f5e34d11df5e2e782c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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: [process.stdin, process.stdout, process.stderr],
});
child.on("close", () => console.log("close"));