summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/subdir/shebang_file.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/subdir/shebang_file.js')
-rw-r--r--cli/tests/testdata/subdir/shebang_file.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/tests/testdata/subdir/shebang_file.js b/cli/tests/testdata/subdir/shebang_file.js
new file mode 100644
index 000000000..1c81be31c
--- /dev/null
+++ b/cli/tests/testdata/subdir/shebang_file.js
@@ -0,0 +1,5 @@
+#!/usr/bin/env -S deno run --allow-read
+
+for (const item of Deno.readDirSync(".")) {
+ console.log(item.name);
+}