mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
777 B
31 lines
777 B
include("mjsunit");
|
|
|
|
function onLoad () {
|
|
assertInstanceof(setTimeout, Function);
|
|
var starttime = new Date;
|
|
|
|
setTimeout(function () {
|
|
var endtime = new Date;
|
|
var diff = endtime - starttime;
|
|
if (diff < 0) diff = -diff;
|
|
assertTrue(900 < diff || diff < 1100);
|
|
}, 1000);
|
|
|
|
// this timer shouldn't execute
|
|
var id = setTimeout(function () { assertTrue(false); }, 500);
|
|
clearTimeout(id);
|
|
|
|
var count = 0;
|
|
setInterval(function () {
|
|
count += 1;
|
|
var endtime = new Date;
|
|
var diff = endtime - starttime;
|
|
if (diff < 0) diff = -diff;
|
|
puts(diff);
|
|
var t = count * 1000;
|
|
assertTrue(t - 100 < diff || diff < t + 100);
|
|
assertTrue(count <= 3);
|
|
if (count == 3)
|
|
clearInterval(this);
|
|
}, 1000);
|
|
}
|
|
|