diff options
Diffstat (limited to 'cli/tests/testdata/npm/registry/@denotest/child-process-fork/1.0.0/index.js')
-rw-r--r-- | cli/tests/testdata/npm/registry/@denotest/child-process-fork/1.0.0/index.js | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/cli/tests/testdata/npm/registry/@denotest/child-process-fork/1.0.0/index.js b/cli/tests/testdata/npm/registry/@denotest/child-process-fork/1.0.0/index.js deleted file mode 100644 index 0482be404..000000000 --- a/cli/tests/testdata/npm/registry/@denotest/child-process-fork/1.0.0/index.js +++ /dev/null @@ -1,20 +0,0 @@ -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")); - } -}; |