node/test/fixtures/should_exit.js

7 lines
159 B
JavaScript

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