mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-11 09:26:28 +02:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
test("basic functionality", () => {
|
|
expect(Math.asinh).toHaveLength(1);
|
|
|
|
expect(Math.asinh(0)).toBeCloseTo(0);
|
|
expect(Math.asinh(1)).toBeCloseTo(0.881373);
|
|
});
|