UNPKG

detox

Version:

E2E tests and automation for mobile

16 lines (12 loc) 283 B
function subscribe(listener) { process.on('SIGINT', listener); process.on('SIGTERM', listener); } function unsubscribe(listener) { process.removeListener('SIGINT', listener); process.removeListener('SIGTERM', listener); } module.exports = { subscribe, unsubscribe, };