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.
15 lines
270 B
15 lines
270 B
15 years ago
|
require("../common");
|
||
15 years ago
|
|
||
|
var complete = false;
|
||
|
var idle = new process.IdleWatcher();
|
||
|
idle.callback = function () {
|
||
|
complete = true;
|
||
|
idle.stop();
|
||
|
};
|
||
|
idle.setPriority(process.EVMAXPRI);
|
||
|
idle.start();
|
||
|
|
||
|
process.addListener('exit', function () {
|
||
|
assert.ok(complete);
|
||
|
});
|