blob: fedfcabe2705c2aff60877a2abcd8a3b2464b686 (
plain)
1
2
3
4
5
6
7
8
9
|
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(NaN)).toBeNaN();
expect(Math.min("String", 1)).toBeNaN();
});
|