Files
2026-08-27 21:09:14 +00: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");
});