summaryrefslogtreecommitdiff
path: root/cli/tests/unit_node/testdata/child_process_unref.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/unit_node/testdata/child_process_unref.js')
-rw-r--r--cli/tests/unit_node/testdata/child_process_unref.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/unit_node/testdata/child_process_unref.js b/cli/tests/unit_node/testdata/child_process_unref.js
deleted file mode 100644
index 8201ac44d..000000000
--- a/cli/tests/unit_node/testdata/child_process_unref.js
+++ /dev/null
@@ -1,10 +0,0 @@
-import cp from "node:child_process";
-import * as path from "node:path";
-import { fileURLToPath } from "node:url";
-
-const script = path.join(
- path.dirname(fileURLToPath(import.meta.url)),
- "infinite_loop.js",
-);
-const childProcess = cp.spawn(Deno.execPath(), ["run", script]);
-childProcess.unref();