diff options
Diffstat (limited to 'std/node/os_test.ts')
-rw-r--r-- | std/node/os_test.ts | 5 |
1 files changed, 3 insertions, 2 deletions
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()); }, }); |