From 29b22175bf6fc726d0b028c7bf5619ab89fca09a Mon Sep 17 00:00:00 2001 From: dave caruso Date: Fri, 15 Sep 2023 11:22:06 -0400 Subject: feat(runtime): add `process.binding` `uv`/`natives`/`config` + make global object properties lazy (#5355) * binding uv * we did that * some more bindings * fix doc * fix uv * yo * static hash table nonsense <3 * huge refactor to the global object i am not ready for merge conflicts * it works part 3 * lose --------- Co-authored-by: Jarred Sumner --- test/js/web/web-globals.test.js | 1 + 1 file changed, 1 insertion(+) (limited to 'test/js/web/web-globals.test.js') diff --git a/test/js/web/web-globals.test.js b/test/js/web/web-globals.test.js index 1a4d7b1d1..abcad63f7 100644 --- a/test/js/web/web-globals.test.js +++ b/test/js/web/web-globals.test.js @@ -31,6 +31,7 @@ const globalSetters = [ for (const [Constructor, name, eventName, prop] of globalSetters) { test(`self.${name}`, () => { var called = false; + console.log("name", name); const callback = ({ [prop]: data }) => { expect(data).toBe("hello"); -- cgit v1.2.3