Math.sinh.js 172 B

123456
  1. test("basic functionality", () => {
  2. expect(Math.sinh).toHaveLength(1);
  3. expect(Math.sinh(0)).toBe(0);
  4. expect(Math.sinh(1)).toBeCloseTo(1.1752011936438014);
  5. });