summaryrefslogtreecommitdiff
path: root/std/node
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-07-06 06:06:16 +0800
committerGitHub <noreply@github.com>2020-07-05 18:06:16 -0400
commit9ac416913e80b1eb9fc4a3fb71a30e68966ca2d6 (patch)
tree9eae9cc0eeb021baa1ffa17961df23ce7e6d44bc /std/node
parentf85a0ce6346eda1366e2ddd2c3868b8853cd81cc (diff)
test(std/node): include windows in link tests (#6620)
Diffstat (limited to 'std/node')
-rw-r--r--std/node/_fs/_fs_link_test.ts5
1 files changed, 0 insertions, 5 deletions
diff --git a/std/node/_fs/_fs_link_test.ts b/std/node/_fs/_fs_link_test.ts
index bac1607b4..ae97f6676 100644
--- a/std/node/_fs/_fs_link_test.ts
+++ b/std/node/_fs/_fs_link_test.ts
@@ -3,10 +3,7 @@ import { fail, assertEquals } from "../../testing/asserts.ts";
import { link, linkSync } from "./_fs_link.ts";
import { assert } from "../../testing/asserts.ts";
-const isWindows = Deno.build.os === "windows";
-
Deno.test({
- ignore: isWindows,
name: "ASYNC: hard linking files works as expected",
async fn() {
const tempFile: string = await Deno.makeTempFile();
@@ -31,7 +28,6 @@ Deno.test({
});
Deno.test({
- ignore: isWindows,
name: "ASYNC: hard linking files passes error to callback",
async fn() {
let failed = false;
@@ -53,7 +49,6 @@ Deno.test({
});
Deno.test({
- ignore: isWindows,
name: "SYNC: hard linking files works as expected",
fn() {
const tempFile: string = Deno.makeTempFileSync();