LibJS: Uncomment the tests that pass now

This commit is contained in:
Egor Ananyin 2020-12-29 13:44:52 +03:00 committed by Andreas Kling
commit 1dbd264239
Notes: sideshowbarker 2024-07-19 00:27:36 +09:00
8 changed files with 19 additions and 22 deletions

View file

@ -3,6 +3,6 @@ test("basic functionality", () => {
expect(Math.log1p(-2)).toBeNaN();
expect(Math.log1p(-1)).toBe(-Infinity);
// FIXME: expect(Math.log1p(0)).toBe(0);
// FIXME: expect(Math.log1p(1)).toBeCloseTo(0.693147);
expect(Math.log1p(0)).toBe(0);
expect(Math.log1p(1)).toBeCloseTo(0.693147);
});