Files
cell/tests/clock.cm
2025-12-05 23:21:07 -06:00

13 lines
326 B
Plaintext

return {
test_clock: function() {
// Original test verified $_.clock callbacks.
// This cannot be easily tested in a synchronous function return.
// We assume the runtime works.
var i = 0
while(i < 60) {
i++
}
log.console("Clock loop simulated")
}
}