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

    expect(Math.asinh(0)).toBeCloseTo(0);
    // FIXME: expect(Math.asinh(1)).toBeCloseTo(0.881373);
});