summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/lock_write_fetch/file_exists.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/lock_write_fetch/file_exists.ts')
-rw-r--r--cli/tests/testdata/run/lock_write_fetch/file_exists.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/cli/tests/testdata/run/lock_write_fetch/file_exists.ts b/cli/tests/testdata/run/lock_write_fetch/file_exists.ts
deleted file mode 100644
index 20de4d4f2..000000000
--- a/cli/tests/testdata/run/lock_write_fetch/file_exists.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-try {
- await Deno.open(Deno.args[0]);
- Deno.exit(0);
-} catch (_e) {
- Deno.exit(1);
-}