0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00
nodejs/test/mjsunit/test-idle-watcher.js

15 lines
284 B
JavaScript
Raw Normal View History

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);
});