Files
bun-src/test/regression/issue/03091.test.ts
T

6 lines
164 B
TypeScript
Raw Normal View History

2026-08-27 21:09:14 +00:00
import { expect, test } from "bun:test";
test("global defines should not be replaced with undefined", () => {
expect(typeof Symbol["for"]).toBe("function");
});