summaryrefslogtreecommitdiff
path: root/std/fs
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-07-26 12:52:08 -0700
committerGitHub <noreply@github.com>2020-07-26 15:52:08 -0400
commitc8fc679329f45f50c061a67400e572f356b7890f (patch)
tree954f3fd643f60598aa164cd60e142aef7ed80936 /std/fs
parent7326e1ab490aab2220b139460165be0bfbf04f36 (diff)
test(std): remove unstable from multiple tests (#6882)
Diffstat (limited to 'std/fs')
-rw-r--r--std/fs/empty_dir_test.ts3
-rw-r--r--std/fs/exists_test.ts3
2 files changed, 2 insertions, 4 deletions
diff --git a/std/fs/empty_dir_test.ts b/std/fs/empty_dir_test.ts
index 6c06c9d52..b71ae16f8 100644
--- a/std/fs/empty_dir_test.ts
+++ b/std/fs/empty_dir_test.ts
@@ -203,8 +203,7 @@ for (const s of scenes) {
);
try {
- // TODO(lucacasonato): remove unstable when stabilized
- const args = [Deno.execPath(), "run", "--unstable"];
+ const args = [Deno.execPath(), "run"];
if (s.read) {
args.push("--allow-read");
diff --git a/std/fs/exists_test.ts b/std/fs/exists_test.ts
index 3c280f4c4..5f3c85650 100644
--- a/std/fs/exists_test.ts
+++ b/std/fs/exists_test.ts
@@ -112,8 +112,7 @@ for (const s of scenes) {
let title = `test ${s.async ? "exists" : "existsSync"}("testdata/${s.file}")`;
title += ` ${s.read ? "with" : "without"} --allow-read`;
Deno.test(`[fs] existsPermission ${title}`, async function (): Promise<void> {
- // TODO(lucacasonato): remove unstable when stabilized
- const args = [Deno.execPath(), "run", "--unstable"];
+ const args = [Deno.execPath(), "run"];
if (s.read) {
args.push("--allow-read");