Files
bun.sh/test/regression/issue/03091.test.ts
2023-07-20 16:44:43 -07:00

6 lines
164 B
TypeScript

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