diff options
author | 2023-01-16 16:47:08 -0800 | |
---|---|---|
committer | 2023-01-16 16:47:08 -0800 | |
commit | b23327c2830b6e5a76f6c96fd5a5f238aaac0377 (patch) | |
tree | 3c99983978e5cc8696f1c07cc3df0b78bb74b2d2 /test/bun.js/process.test.js | |
parent | c83d56c75defc8af8e843429743a073aa106e5e1 (diff) | |
download | bun-b23327c2830b6e5a76f6c96fd5a5f238aaac0377.tar.gz bun-b23327c2830b6e5a76f6c96fd5a5f238aaac0377.tar.zst bun-b23327c2830b6e5a76f6c96fd5a5f238aaac0377.zip |
[node] Add `process.config`
Diffstat (limited to '')
-rw-r--r-- | test/bun.js/process.test.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/bun.js/process.test.js b/test/bun.js/process.test.js index 8ea57a28b..48fc61a7e 100644 --- a/test/bun.js/process.test.js +++ b/test/bun.js/process.test.js @@ -167,3 +167,12 @@ it("process.versions", () => { expect(process.versions[name]).toBe(versions[name]); } }); + +it("process.config", () => { + expect(process.config).toEqual({ + variables: { + v8_enable_i8n_support: 1, + }, + target_defaults: {}, + }); +}); |