From 0a81ec6b1e00ef01900393ae0460eaf3a6ec05d6 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 20 Jun 2020 23:49:27 -0400 Subject: Remove Deno.dir and dirs dependency (#6385) --- std/node/os_test.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'std/node/os_test.ts') diff --git a/std/node/os_test.ts b/std/node/os_test.ts index 11de777a9..c5f39f635 100644 --- a/std/node/os_test.ts +++ b/std/node/os_test.ts @@ -10,6 +10,7 @@ Deno.test({ Deno.test({ name: "home directory is a string", + ignore: true, fn() { assertEquals(typeof os.homedir(), "string"); }, @@ -17,6 +18,7 @@ Deno.test({ Deno.test({ name: "tmp directory is a string", + ignore: true, fn() { assertEquals(typeof os.tmpdir(), "string"); }, @@ -24,6 +26,7 @@ Deno.test({ Deno.test({ name: "hostname is a string", + ignore: true, fn() { assertEquals(typeof os.hostname(), "string"); }, @@ -192,8 +195,6 @@ Deno.test({ fn() { assertEquals(`${os.arch}`, os.arch()); assertEquals(`${os.endianness}`, os.endianness()); - assertEquals(`${os.homedir}`, os.homedir()); - assertEquals(`${os.hostname}`, os.hostname()); assertEquals(`${os.platform}`, os.platform()); }, }); -- cgit v1.2.3