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

    expect(Math.acosh(-1)).toBeNaN();
    expect(Math.acosh(0)).toBeNaN();
    expect(Math.acosh(0.5)).toBeNaN();
    expect(Math.acosh(1)).toBeCloseTo(0);
    expect(Math.acosh(2)).toBeCloseTo(1.316957);
});