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