mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
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);
|
|
});
|