mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:07:46 +00:00
LibJS: Uncomment the tests that pass now
This commit is contained in:
parent
92c6ae57fc
commit
1dbd264239
8 changed files with 19 additions and 22 deletions
|
@ -4,7 +4,7 @@ test("basic functionality", () => {
|
|||
expect(Math.atanh(-2)).toBeNaN();
|
||||
expect(Math.atanh(2)).toBeNaN();
|
||||
expect(Math.atanh(-1)).toBe(-Infinity);
|
||||
// FIXME: expect(Math.atanh(0)).toBe(0);
|
||||
expect(Math.atanh(0)).toBe(0);
|
||||
expect(Math.atanh(0.5)).toBeCloseTo(0.549306);
|
||||
// FIXME: expect(Math.atanh(1)).toBe(Infinity);
|
||||
expect(Math.atanh(1)).toBe(Infinity);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue