summaryrefslogtreecommitdiff
path: root/tests/napi/env_test.js
blob: 72b868a6682c4ff291a1fc7eb7b19abc10d128fd (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

import { assert, loadTestLibrary } from "./common.js";

const env = loadTestLibrary();

Deno.test("napi get global", function () {
  const g = env.testNodeGlobal();
  assert(g === globalThis);
});