From c8fc679329f45f50c061a67400e572f356b7890f Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Sun, 26 Jul 2020 12:52:08 -0700 Subject: test(std): remove unstable from multiple tests (#6882) --- std/fs/exists_test.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'std/fs/exists_test.ts') 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 { - // TODO(lucacasonato): remove unstable when stabilized - const args = [Deno.execPath(), "run", "--unstable"]; + const args = [Deno.execPath(), "run"]; if (s.read) { args.push("--allow-read"); -- cgit v1.2.3