1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

fix(napi): update env_test.js (#19876)

This commit is contained in:
Bartek Iwańczuk 2023-07-19 12:36:52 +02:00
parent b8021744b3
commit c00556b9d7
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750
2 changed files with 1 additions and 11 deletions

View file

@ -6,7 +6,5 @@ const env = loadTestLibrary();
Deno.test("napi get global", function () {
const g = env.testNodeGlobal();
// Note: global is a mock object in the tests.
// See common.js
assert(g.Buffer);
assert(g === globalThis);
});

View file

@ -15,14 +15,6 @@ extern "C" fn get_node_global(
let mut result: napi_value = std::ptr::null_mut();
assert_napi_ok!(napi_get_global(env, &mut result));
let mut r1: napi_value = std::ptr::null_mut();
assert_napi_ok!(napi_get_named_property(
env,
result,
"Buffer\0".as_ptr() as _,
&mut r1
));
result
}