mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-27 23:09:08 +00:00
11 lines
345 B
JavaScript
11 lines
345 B
JavaScript
test("basic functionality", () => {
|
|
expect(Math.min).toHaveLength(2);
|
|
|
|
expect(Math.min(1)).toBe(1);
|
|
expect(Math.min(2, 1)).toBe(1);
|
|
expect(Math.min(1, 2, 3)).toBe(1);
|
|
expect(Math.min(-0, 0)).toBe(-0);
|
|
expect(Math.min(0, -0)).toBe(-0);
|
|
expect(Math.min(NaN)).toBeNaN();
|
|
expect(Math.min("String", 1)).toBeNaN();
|
|
});
|