mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
Libraries: Move to Userland/Libraries/
This commit is contained in:
@@ -1,20 +0,0 @@
|
||||
test("basic functionality", () => {
|
||||
let i = 0;
|
||||
let three;
|
||||
let five;
|
||||
|
||||
for (; i < 9; ) {
|
||||
switch (i) {
|
||||
case 3:
|
||||
three = i;
|
||||
break;
|
||||
case 5:
|
||||
five = i;
|
||||
break;
|
||||
}
|
||||
++i;
|
||||
}
|
||||
|
||||
expect(three).toBe(3);
|
||||
expect(five).toBe(5);
|
||||
});
|
||||
Reference in New Issue
Block a user