summaryrefslogtreecommitdiff
path: root/std/fs/testdata/expand_wildcard.js
diff options
context:
space:
mode:
Diffstat (limited to 'std/fs/testdata/expand_wildcard.js')
-rw-r--r--std/fs/testdata/expand_wildcard.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/std/fs/testdata/expand_wildcard.js b/std/fs/testdata/expand_wildcard.js
deleted file mode 100644
index a30a17536..000000000
--- a/std/fs/testdata/expand_wildcard.js
+++ /dev/null
@@ -1,6 +0,0 @@
-import { expandGlob } from "../expand_glob.ts";
-
-const glob = new URL("*", import.meta.url).pathname;
-for await (const { filename } of expandGlob(glob)) {
- console.log(filename);
-}