summaryrefslogtreecommitdiff
path: root/tests/unit_node/process_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit_node/process_test.ts')
-rw-r--r--tests/unit_node/process_test.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/unit_node/process_test.ts b/tests/unit_node/process_test.ts
index 24fd3909d..e15d37744 100644
--- a/tests/unit_node/process_test.ts
+++ b/tests/unit_node/process_test.ts
@@ -1116,3 +1116,7 @@ Deno.test("process.listeners - include SIG* events", () => {
process.off("SIGINT", listener2);
assertEquals(process.listeners("SIGINT").length, 0);
});
+
+Deno.test(function processVersionsOwnProperty() {
+ assert(Object.prototype.hasOwnProperty.call(process, "versions"));
+});