aboutsummaryrefslogtreecommitdiff
path: root/test/bun.js/node-module-module.test.js
blob: 549b5e0856101a150372cd5a9a3fe364f72f803a (plain) (blame)
1
2
3
4
5
import { expect, test } from "bun:test";

test("module.globalPaths exists", () => {
  expect(Array.isArray(require("module").globalPaths)).toBe(true);
});