initial commit
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import { expect, test } from "bun:test";
|
||||
|
||||
export const Infinity = 1 / 0;
|
||||
|
||||
test("Infinity", async () => {
|
||||
expect(Infinity).toBe(globalThis.Infinity);
|
||||
const Mod = await import(import.meta.path);
|
||||
expect(Mod.Infinity).toBe(1 / 0);
|
||||
expect(Mod.Infinity).toBe(globalThis.Infinity);
|
||||
});
|
||||
Reference in New Issue
Block a user