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