summaryrefslogtreecommitdiff
path: root/cli/tests/dont_panic_not_found_cwd.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/dont_panic_not_found_cwd.ts')
-rw-r--r--cli/tests/dont_panic_not_found_cwd.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/tests/dont_panic_not_found_cwd.ts b/cli/tests/dont_panic_not_found_cwd.ts
new file mode 100644
index 000000000..e5ae1dfa4
--- /dev/null
+++ b/cli/tests/dont_panic_not_found_cwd.ts
@@ -0,0 +1,3 @@
+const dir = Deno.makeTempDirSync();
+Deno.chdir(dir);
+Deno.removeSync(dir);