Files
bun.sh/test/regression/issue/03091.test.ts
2024-09-03 21:32:52 -07:00

6 lines
164 B
TypeScript

import { expect, test } from "bun:test";
test("global defines should not be replaced with undefined", () => {
expect(typeof Symbol["for"]).toBe("function");
});