Files
cell/tests/clock.cm
2025-12-18 18:43:23 -06:00

13 lines
324 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")
}
}