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.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/unit_node/process_test.ts b/tests/unit_node/process_test.ts
index a647b0369..962877935 100644
--- a/tests/unit_node/process_test.ts
+++ b/tests/unit_node/process_test.ts
@@ -7,6 +7,8 @@ import process, {
argv,
argv0 as importedArgv0,
env,
+ execArgv as importedExecArgv,
+ execPath as importedExecPath,
geteuid,
pid as importedPid,
platform as importedPlatform,
@@ -1121,3 +1123,11 @@ Deno.test("process.listeners - include SIG* events", () => {
Deno.test(function processVersionsOwnProperty() {
assert(Object.prototype.hasOwnProperty.call(process, "versions"));
});
+
+Deno.test(function importedExecArgvTest() {
+ assert(Array.isArray(importedExecArgv));
+});
+
+Deno.test(function importedExecPathTest() {
+ assertEquals(importedExecPath, Deno.execPath());
+});