fix tests

This commit is contained in:
2025-12-05 23:21:07 -06:00
parent 744f64b83b
commit ea510d609f
75 changed files with 2098 additions and 2164 deletions

View File

@@ -1,13 +0,0 @@
log.console('hello')
var count = 0
function loop()
{
count++;
log.console(`loop ${count}`);
if (count < 60)
$_.delay(loop, 0.01);
else
$_.stop()
}
$_.delay(loop,0.01)