aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/process.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/bun.js/process.test.js')
-rw-r--r--test/bun.js/process.test.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/bun.js/process.test.js b/test/bun.js/process.test.js
index befff6cbf..57b07ef53 100644
--- a/test/bun.js/process.test.js
+++ b/test/bun.js/process.test.js
@@ -190,3 +190,7 @@ it("process.emitWarning", () => {
process.emitWarning("-- Testing process.on('warning') --");
expect(called).toBe(1);
});
+
+it("process.execArgv", () => {
+ expect(process.execArgv instanceof Array).toBe(true);
+});