summaryrefslogtreecommitdiff
path: root/tests/specs/node/child_process_extra_pipes/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/specs/node/child_process_extra_pipes/main.ts')
-rw-r--r--tests/specs/node/child_process_extra_pipes/main.ts26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/specs/node/child_process_extra_pipes/main.ts b/tests/specs/node/child_process_extra_pipes/main.ts
new file mode 100644
index 000000000..a3683fe9e
--- /dev/null
+++ b/tests/specs/node/child_process_extra_pipes/main.ts
@@ -0,0 +1,26 @@
+import child_process from "node:child_process";
+import { Buffer } from "node:buffer";
+import console from "node:console";
+
+const child = child_process.spawn("./test-pipe/target/debug/test-pipe", [], {
+ stdio: ["inherit", "inherit", "inherit", "ignore", "pipe"],
+});
+
+const extra = child.stdio[4];
+
+const p = Promise.withResolvers();
+
+child.on("close", () => {
+ console.log("child closed");
+ p.resolve();
+});
+
+extra.on("data", (d) => {
+ console.log("data:", d.toString().trim());
+});
+
+extra.on("close", () => {
+ console.log("pipe closed");
+});
+
+await p.promise;