mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
6 lines
164 B
TypeScript
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");
|
|
});
|