mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-27 19:07:24 +00:00
Mark a bunch of these with FIXME so that someone can find them and fix them eventually. :^)
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
load("test-common.js");
|
|
|
|
try {
|
|
assert(isClose(Math.asinh(0), 0));
|
|
|
|
// FIXME: assert(isClose(Math.asinh(1), 0.881373));
|
|
|
|
console.log("PASS");
|
|
} catch (e) {
|
|
console.log("FAIL: " + e);
|
|
}
|