summaryrefslogtreecommitdiff
path: root/tests/registry/npm/@denotest/child-process-fork/1.0.0/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/registry/npm/@denotest/child-process-fork/1.0.0/index.js')
-rw-r--r--tests/registry/npm/@denotest/child-process-fork/1.0.0/index.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/registry/npm/@denotest/child-process-fork/1.0.0/index.js b/tests/registry/npm/@denotest/child-process-fork/1.0.0/index.js
new file mode 100644
index 000000000..0482be404
--- /dev/null
+++ b/tests/registry/npm/@denotest/child-process-fork/1.0.0/index.js
@@ -0,0 +1,20 @@
+const path = require("path");
+
+function childProcessFork(path) {
+ const command = new Deno.Command(Deno.execPath(), {
+ args: ["run", "-A", path],
+ env: {
+ "DENO_DONT_USE_INTERNAL_NODE_COMPAT_STATE": Deno[Deno.internal].core.ops.op_npm_process_state(),
+ }
+ });
+ const child = command.spawn();
+ child.status.then(() => {
+ console.log("Done.");
+ });
+}
+
+module.exports = {
+ run() {
+ childProcessFork(path.join(__dirname, "forked_path.js"));
+ }
+};