summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/run/056_make_temp_file_write_perm.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/run/056_make_temp_file_write_perm.ts')
-rw-r--r--cli/tests/testdata/run/056_make_temp_file_write_perm.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/cli/tests/testdata/run/056_make_temp_file_write_perm.ts b/cli/tests/testdata/run/056_make_temp_file_write_perm.ts
deleted file mode 100644
index c0deda8a2..000000000
--- a/cli/tests/testdata/run/056_make_temp_file_write_perm.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-const path = await Deno.makeTempFile({ dir: `subdir` });
-try {
- if (!path.match(/^subdir[/\\][^/\\]+/)) {
- throw Error("bad " + path);
- }
- console.log("good", path);
-} finally {
- await Deno.remove(path);
-}