From b0b27c43100bf4a7303174b9765c853d2f76f207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 19 Mar 2020 10:58:12 +0100 Subject: refactor: rename Deno.TestDefinition.skip to ignore (#4400) --- cli/js/tests/stat_test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cli/js/tests/stat_test.ts') 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 { 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 { const enc = new TextEncoder(); const data = enc.encode("Hello"); -- cgit v1.2.3