mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
test(std): remove unstable from multiple tests (#6882)
This commit is contained in:
parent
7326e1ab49
commit
c8fc679329
4 changed files with 3 additions and 8 deletions
|
@ -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");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue