summaryrefslogtreecommitdiff
path: root/std/node/os_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-06-20 23:49:27 -0400
committerGitHub <noreply@github.com>2020-06-20 23:49:27 -0400
commit0a81ec6b1e00ef01900393ae0460eaf3a6ec05d6 (patch)
tree020b1d71aabd8102ae85ae24fc89becb035b4854 /std/node/os_test.ts
parentc0ea9a99c0dc21faf46f73dca481361853e914fa (diff)
Remove Deno.dir and dirs dependency (#6385)
Diffstat (limited to 'std/node/os_test.ts')
-rw-r--r--std/node/os_test.ts5
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());
},
});