diff options
author | 2023-01-22 03:24:32 -0800 | |
---|---|---|
committer | 2023-01-22 03:24:32 -0800 | |
commit | 043e408b15c1c6cf2ad985a0001dbe7a0a02795b (patch) | |
tree | e7ba63736a58bd33530a90bc64ab09915202e753 /test/bun.js/process.test.js | |
parent | 9f6658b9813f69ecb5f982dad3969af6b454138b (diff) | |
download | bun-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.js | 4 |
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); +}); |