node/test/fixtures/should_exit.js

7 lines
169 B
JavaScript
Raw Normal View History

function tmp() {}
process.addListener("SIGINT", tmp);
process.removeListener("SIGINT", tmp);
setInterval(function () {
process.stdout.write('keep alive\n');
}, 1000);