diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-06-12 20:23:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-12 15:23:38 -0400 |
commit | 1fff6f55c3ba98a10018c6d374795e612061e9b6 (patch) | |
tree | 12074b6d44736b11513d857e437f9e30a6bf65a4 /std/node/_fs/_fs_link_test.ts | |
parent | 26bf56afdaf16634ffbaa23684faf3a44cc10f62 (diff) |
refactor: Don't destructure the Deno namespace (#6268)
Diffstat (limited to 'std/node/_fs/_fs_link_test.ts')
-rw-r--r-- | std/node/_fs/_fs_link_test.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/std/node/_fs/_fs_link_test.ts b/std/node/_fs/_fs_link_test.ts index e59984c8c..0251e55fb 100644 --- a/std/node/_fs/_fs_link_test.ts +++ b/std/node/_fs/_fs_link_test.ts @@ -1,11 +1,11 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -const { test } = Deno; import { fail, assertEquals } from "../../testing/asserts.ts"; import { link, linkSync } from "./_fs_link.ts"; import { assert } from "https://deno.land/std@v0.50.0/testing/asserts.ts"; + const isWindows = Deno.build.os === "windows"; -test({ +Deno.test({ ignore: isWindows, name: "ASYNC: hard linking files works as expected", async fn() { @@ -30,7 +30,7 @@ test({ }, }); -test({ +Deno.test({ ignore: isWindows, name: "ASYNC: hard linking files passes error to callback", async fn() { @@ -52,7 +52,7 @@ test({ }, }); -test({ +Deno.test({ ignore: isWindows, name: "SYNC: hard linking files works as expected", fn() { |