summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/no_prompt.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/no_prompt.ts')
-rw-r--r--cli/tests/testdata/run/no_prompt.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/testdata/run/no_prompt.ts b/cli/tests/testdata/run/no_prompt.ts
deleted file mode 100644
index 17d54b92c..000000000
--- a/cli/tests/testdata/run/no_prompt.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-new Worker("data:,setTimeout(() => Deno.exit(2), 200)", { type: "module" });
-
-try {
- await new Deno.Command("ps", {
- stdout: "inherit",
- stderr: "inherit",
- }).output();
-} catch {
- Deno.exit(0);
-}