aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/process.test.js
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-22 03:24:32 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2023-01-22 03:24:32 -0800
commit043e408b15c1c6cf2ad985a0001dbe7a0a02795b (patch)
treee7ba63736a58bd33530a90bc64ab09915202e753 /test/bun.js/process.test.js
parent9f6658b9813f69ecb5f982dad3969af6b454138b (diff)
downloadbun-043e408b15c1c6cf2ad985a0001dbe7a0a02795b.tar.gz
bun-043e408b15c1c6cf2ad985a0001dbe7a0a02795b.tar.zst
bun-043e408b15c1c6cf2ad985a0001dbe7a0a02795b.zip
cleanup execArgv a little
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);
+});