summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Tests/builtins/Math/Math.sinh.js
blob: 6ea3049c4c2be113047ee1394c7b174ce2be485f (plain)
1
2
3
4
5
6
test("basic functionality", () => {
    expect(Math.sinh).toHaveLength(1);

    expect(Math.sinh(0)).toBe(0);
    expect(Math.sinh(1)).toBeCloseTo(1.1752011936438014);
});