diff options
Diffstat (limited to 'std/node/os_test.ts')
-rw-r--r-- | std/node/os_test.ts | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/std/node/os_test.ts b/std/node/os_test.ts index e4231aa3c..8879f8345 100644 --- a/std/node/os_test.ts +++ b/std/node/os_test.ts @@ -201,6 +201,20 @@ Deno.test({ }); Deno.test({ + name: "Total memory amount should be greater than 0", + fn() { + assert(os.totalmem() > 0); + }, +}); + +Deno.test({ + name: "Free memory amount should be greater than 0", + fn() { + assert(os.freemem() > 0); + }, +}); + +Deno.test({ name: "APIs not yet implemented", fn() { assertThrows( @@ -212,13 +226,6 @@ Deno.test({ ); assertThrows( () => { - os.freemem(); - }, - Error, - "Not implemented", - ); - assertThrows( - () => { os.getPriority(); }, Error, @@ -240,13 +247,6 @@ Deno.test({ ); assertThrows( () => { - os.totalmem(); - }, - Error, - "Not implemented", - ); - assertThrows( - () => { os.type(); }, Error, |