summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_chmod_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_chmod_test.ts
parent54d1f299dc774c695056f04cfe1013287b53b86a (diff)
refactor: rename Deno.TestDefinition.skip to ignore (#4400)
Diffstat (limited to 'std/node/_fs/_fs_chmod_test.ts')
-rw-r--r--std/node/_fs/_fs_chmod_test.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/std/node/_fs/_fs_chmod_test.ts b/std/node/_fs/_fs_chmod_test.ts
index de8d1cce8..8d420b3be 100644
--- a/std/node/_fs/_fs_chmod_test.ts
+++ b/std/node/_fs/_fs_chmod_test.ts
@@ -5,7 +5,7 @@ import { chmod, chmodSync } from "./_fs_chmod.ts";
test({
name: "ASYNC: Permissions are changed (non-Windows)",
- skip: Deno.build.os === "win",
+ ignore: Deno.build.os === "win",
async fn() {
const tempFile: string = await Deno.makeTempFile();
const originalFileMode: number | null = (await Deno.lstat(tempFile)).mode;
@@ -31,7 +31,7 @@ test({
test({
name: "SYNC: Permissions are changed (non-Windows)",
- skip: Deno.build.os === "win",
+ ignore: Deno.build.os === "win",
fn() {
const tempFile: string = Deno.makeTempFileSync();
const originalFileMode: number | null = Deno.lstatSync(tempFile).mode;