1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 05:08:13 +00:00

LibJS/Tests: Run prettier on modulo-basic.js

This commit is contained in:
Linus Groh 2022-02-16 11:23:25 +00:00
parent 1e0facb7ee
commit af75503c17

View file

@ -23,7 +23,7 @@ test("basic functionality", () => {
expect(1 % -0).toBeNaN();
expect(0 % 5).toBe(0);
expect(-0 % 5).toBe(-0);
expect((-1) % -1).toBe(-0);
expect(-1 % -1).toBe(-0);
// test262 examples
expect(1 % null).toBeNaN();