mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 03:09:08 +00:00
8 lines
231 B
JavaScript
8 lines
231 B
JavaScript
test("basic functionality", () => {
|
|
expect(Math.cosh).toHaveLength(1);
|
|
|
|
expect(Math.cosh(0)).toBe(1);
|
|
expect(Math.cosh(1)).toBeCloseTo(1.5430806348152437);
|
|
expect(Math.cosh(-1)).toBeCloseTo(1.5430806348152437);
|
|
});
|