summaryrefslogtreecommitdiff
path: root/cli/js/tests/stat_test.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-03-19 10:58:12 +0100
committerGitHub <noreply@github.com>2020-03-19 10:58:12 +0100
commitb0b27c43100bf4a7303174b9765c853d2f76f207 (patch)
treef992aad22e4ca38221bad100d4dae52737ea98a3 /cli/js/tests/stat_test.ts
parent54d1f299dc774c695056f04cfe1013287b53b86a (diff)
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
Diffstat (limited to 'cli/js/tests/stat_test.ts')
-rw-r--r--cli/js/tests/stat_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/tests/stat_test.ts b/cli/js/tests/stat_test.ts
index 0a33901b7..e51204b6e 100644
--- a/cli/js/tests/stat_test.ts
+++ b/cli/js/tests/stat_test.ts
@@ -184,7 +184,7 @@ unitTest({ perms: { read: true } }, async function lstatNotFound(): Promise<
});
unitTest(
- { skip: Deno.build.os !== "win", perms: { read: true, write: true } },
+ { ignore: Deno.build.os !== "win", perms: { read: true, write: true } },
async function statNoUnixFields(): Promise<void> {
const enc = new TextEncoder();
const data = enc.encode("Hello");
@@ -205,7 +205,7 @@ unitTest(
);
unitTest(
- { skip: Deno.build.os === "win", perms: { read: true, write: true } },
+ { ignore: Deno.build.os === "win", perms: { read: true, write: true } },
async function statUnixFields(): Promise<void> {
const enc = new TextEncoder();
const data = enc.encode("Hello");