summaryrefslogtreecommitdiff
path: root/std/fs/testdata/exists_sync.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs/testdata/exists_sync.ts')
-rw-r--r--std/fs/testdata/exists_sync.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/std/fs/testdata/exists_sync.ts b/std/fs/testdata/exists_sync.ts
deleted file mode 100644
index 8cc51e9f8..000000000
--- a/std/fs/testdata/exists_sync.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-import { existsSync } from "../exists.ts";
-
-try {
- const isExist = existsSync(Deno.args[0]);
- Deno.stdout.write(new TextEncoder().encode(isExist ? "exist" : "not exist"));
-} catch (err) {
- Deno.stdout.write(new TextEncoder().encode(err.message));
-}