diff options
Diffstat (limited to 'cli/js/tests/realpath_test.ts')
-rw-r--r-- | cli/js/tests/realpath_test.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/tests/realpath_test.ts b/cli/js/tests/realpath_test.ts index cda7ddaf1..d185e4095 100644 --- a/cli/js/tests/realpath_test.ts +++ b/cli/js/tests/realpath_test.ts @@ -14,7 +14,7 @@ unitTest({ perms: { read: true } }, function realpathSyncSuccess(): void { unitTest( { - skip: Deno.build.os === "win", + ignore: Deno.build.os === "win", perms: { read: true, write: true } }, function realpathSyncSymlink(): void { @@ -66,7 +66,7 @@ unitTest({ perms: { read: true } }, async function realpathSuccess(): Promise< unitTest( { - skip: Deno.build.os === "win", + ignore: Deno.build.os === "win", perms: { read: true, write: true } }, async function realpathSymlink(): Promise<void> { |