summaryrefslogtreecommitdiff
path: root/std/fs/testdata/empty_dir.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs/testdata/empty_dir.ts')
-rw-r--r--std/fs/testdata/empty_dir.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/std/fs/testdata/empty_dir.ts b/std/fs/testdata/empty_dir.ts
deleted file mode 100644
index f8fcc1ceb..000000000
--- a/std/fs/testdata/empty_dir.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import { emptyDir } from "../empty_dir.ts";
-
-emptyDir(Deno.args[0])
- .then(() => {
- Deno.stdout.write(new TextEncoder().encode("success"));
- })
- .catch((err) => {
- Deno.stdout.write(new TextEncoder().encode(err.message));
- });