summaryrefslogtreecommitdiff
path: root/std/node/os_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/os_test.ts')
-rw-r--r--std/node/os_test.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/std/node/os_test.ts b/std/node/os_test.ts
index c67879d23..f0b9ca79d 100644
--- a/std/node/os_test.ts
+++ b/std/node/os_test.ts
@@ -246,6 +246,13 @@ test({
);
assertThrows(
() => {
+ os.type();
+ },
+ Error,
+ "Not implemented"
+ );
+ assertThrows(
+ () => {
os.uptime();
},
Error,