mirror of https://github.com/nodejs/node.git
15 lines
285 B
JavaScript
15 lines
285 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);
|
|
});
|