summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Tests/loops/for-no-curlies.js
blob: 913347c39594438261a91fe72494ce4568394af8 (plain)
1
2
3
4
5
test("basic functionality", () => {
    let number = 0;
    for (let i = 0; i < 3; ++i) for (let j = 0; j < 3; ++j) number++;
    expect(number).toBe(9);
});