diff options
Diffstat (limited to 'std/node/_fs/_fs_chmod_test.ts')
-rw-r--r-- | std/node/_fs/_fs_chmod_test.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/std/node/_fs/_fs_chmod_test.ts b/std/node/_fs/_fs_chmod_test.ts index e43f09788..de4981a8c 100644 --- a/std/node/_fs/_fs_chmod_test.ts +++ b/std/node/_fs/_fs_chmod_test.ts @@ -1,9 +1,8 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -const { test } = Deno; import { fail, assert } from "../../testing/asserts.ts"; import { chmod, chmodSync } from "./_fs_chmod.ts"; -test({ +Deno.test({ name: "ASYNC: Permissions are changed (non-Windows)", ignore: Deno.build.os === "windows", async fn() { @@ -29,7 +28,7 @@ test({ }, }); -test({ +Deno.test({ name: "SYNC: Permissions are changed (non-Windows)", ignore: Deno.build.os === "windows", fn() { |