mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 10:38:11 +00:00
Base+LibJS+LibWeb: Make prettier clean
Also use "// prettier-ignore" comments where necessary rather than excluding whole files (via .prettierignore).
This commit is contained in:
parent
76239f89c2
commit
5122f98198
24 changed files with 100 additions and 79 deletions
|
@ -10,8 +10,9 @@ test("Toplevel break inside loop", () => {
|
|||
test("break inside sub-blocks", () => {
|
||||
var j = 0;
|
||||
for (var i = 0; i < 9; ++i) {
|
||||
if (j == 4)
|
||||
if (j == 4) {
|
||||
break;
|
||||
}
|
||||
++j;
|
||||
}
|
||||
expect(j).toBe(4);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue