diff options
Diffstat (limited to 'std/node/os_test.ts')
-rw-r--r-- | std/node/os_test.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/std/node/os_test.ts b/std/node/os_test.ts index 6ef123575..a73a2d4e9 100644 --- a/std/node/os_test.ts +++ b/std/node/os_test.ts @@ -17,6 +17,13 @@ test({ }); test({ + name: "tmp directory is a string", + fn() { + assertEquals(typeof os.tmpdir(), "string"); + } +}); + +test({ name: "hostname is a string", fn() { assertEquals(typeof os.hostname(), "string"); @@ -232,13 +239,6 @@ test({ ); assertThrows( () => { - os.tmpdir(); - }, - Error, - "Not implemented" - ); - assertThrows( - () => { os.totalmem(); }, Error, |