0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-29 23:16:30 +01:00
nodejs/test/mjsunit/test-idle-watcher.js
Ryan Dahl aeb7d6d168 Add process.IdleWatcher
With priorities. Will be used for process.nextLoop().
2010-01-18 10:12:04 -08:00

15 lines
284 B
JavaScript

process.mixin(require("./common"));
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);
});