aboutsummaryrefslogtreecommitdiff
path: root/test/regression/issue/03091.test.ts
blob: ee115a2a15cbeaebf34edf26f4b9839d4026b526 (plain) (blame)
1
2
3
4
5
import { test, expect } from "bun:test";

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