summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_chown_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 /std/node/_fs/_fs_chown_test.ts
parent54d1f299dc774c695056f04cfe1013287b53b86a (diff)
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
Diffstat (limited to 'std/node/_fs/_fs_chown_test.ts')
-rw-r--r--std/node/_fs/_fs_chown_test.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/std/node/_fs/_fs_chown_test.ts b/std/node/_fs/_fs_chown_test.ts
index f7b4a8cec..bdf2ae09a 100644
--- a/std/node/_fs/_fs_chown_test.ts
+++ b/std/node/_fs/_fs_chown_test.ts
@@ -4,10 +4,10 @@ import { fail, assertEquals } from "../../testing/asserts.ts";
import { chown, chownSync } from "./_fs_chown.ts";
//chown is difficult to test. Best we can do is set the existing user id/group id again
-const skip = Deno.build.os == "win";
+const ignore = Deno.build.os == "win";
test({
- skip,
+ ignore,
name: "ASYNC: setting existing uid/gid works as expected (non-Windows)",
async fn() {
const tempFile: string = await Deno.makeTempFile();
@@ -35,7 +35,7 @@ test({
});
test({
- skip,
+ ignore,
name: "SYNC: setting existing uid/gid works as expected (non-Windows)",
fn() {
const tempFile: string = Deno.makeTempFileSync();