mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-05 07:40:58 +00:00
9 lines
266 B
JavaScript
9 lines
266 B
JavaScript
|
|
test("basic functionality", () => {
|
||
|
|
expect(Math.f16round).toHaveLength(1);
|
||
|
|
|
||
|
|
expect(Math.f16round(5.5)).toBe(5.5);
|
||
|
|
expect(Math.f16round(5.05)).toBe(5.05078125);
|
||
|
|
expect(Math.f16round(5)).toBe(5);
|
||
|
|
expect(Math.f16round(-5.05)).toBe(-5.05078125);
|
||
|
|
});
|