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
Notes: sideshowbarker 2024-07-17 18:43:38 +09:00

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();