Reenable debug integration test (#203733)

This commit is contained in:
Rob Lourens
2024-01-29 16:21:19 -03:00
committed by GitHub
parent 0f323440e5
commit b637950b4b
4 changed files with 43 additions and 41 deletions

View File

@@ -4,7 +4,9 @@
*--------------------------------------------------------------------------------------------*/
let y = 0;
for (let i = 0; i < 100; i++) {
console.log(y);
y = y + i;
let z = 1;
hello();
function hello() {
console.log('hello');
}