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

    expect(Math.log1p(-2)).toBeNaN();
    expect(Math.log1p(-1)).toBe(-Infinity);
    expect(Math.log1p(0)).toBe(0);
    expect(Math.log1p(1)).toBeCloseTo(0.693147);
});