diff options
author | 2023-07-20 15:32:20 -0700 | |
---|---|---|
committer | 2023-07-20 15:32:20 -0700 | |
commit | 9ad330d9176604bddb58972e1cedce7a80009ddc (patch) | |
tree | e2400d04ff5cbc6f5b12c8334675c52beefe2dcb | |
parent | ef89f03de6186c31a3d4da3c36eebaf2448ad6f1 (diff) | |
download | bun-9ad330d9176604bddb58972e1cedce7a80009ddc.tar.gz bun-9ad330d9176604bddb58972e1cedce7a80009ddc.tar.zst bun-9ad330d9176604bddb58972e1cedce7a80009ddc.zip |
Update process.test.js
-rw-r--r-- | test/js/node/process/process.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/js/node/process/process.test.js b/test/js/node/process/process.test.js index 539a92f2c..765a0a845 100644 --- a/test/js/node/process/process.test.js +++ b/test/js/node/process/process.test.js @@ -455,9 +455,9 @@ for (const stub of arrayStubs) { }); } -const emptyObjectStubs = ["_preload_modules"]; +const emptyObjectStubs = []; const emptySetStubs = ["allowedNodeEnvironmentFlags"]; -const emptyArrayStubs = ["moduleLoadList"]; +const emptyArrayStubs = ["moduleLoadList", "_preload_modules"]; for (const stub of emptyObjectStubs) { it(`process.${stub}`, () => { |