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 committed by GitHub
parent e511022c74
commit 5919f31891
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 11 deletions

View file

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

View file

@ -15,14 +15,6 @@ extern "C" fn get_node_global(
let mut result: napi_value = std::ptr::null_mut(); let mut result: napi_value = std::ptr::null_mut();
assert_napi_ok!(napi_get_global(env, &mut result)); 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 result
} }