2020-07-04 10:09:48 -07:00
|
|
|
test("basic functionality", () => {
|
2020-07-06 07:37:45 -07:00
|
|
|
expect(Math.tan).toHaveLength(1);
|
2020-04-13 10:31:13 -07:00
|
|
|
|
2020-07-06 07:37:45 -07:00
|
|
|
expect(Math.tan(0)).toBe(0);
|
|
|
|
|
expect(Math.tan(null)).toBe(0);
|
|
|
|
|
expect(Math.tan("")).toBe(0);
|
|
|
|
|
expect(Math.tan([])).toBe(0);
|
|
|
|
|
expect(Math.ceil(Math.tan(Math.PI / 4))).toBe(1);
|
|
|
|
|
expect(Math.tan()).toBeNaN();
|
|
|
|
|
expect(Math.tan(undefined)).toBeNaN();
|
|
|
|
|
expect(Math.tan([1, 2, 3])).toBeNaN();
|
|
|
|
|
expect(Math.tan({})).toBeNaN();
|
|
|
|
|
expect(Math.tan("foo")).toBeNaN();
|
2022-08-10 11:57:46 +02:00
|
|
|
expect(Math.tan(Infinity)).toBeNaN();
|
|
|
|
|
expect(Math.tan(-Infinity)).toBeNaN();
|
2020-07-04 10:09:48 -07:00
|
|
|
});
|