| 18 | const PROCESS_EXITED_MAX_INTERVAL = 1280; |
| 19 | |
| 20 | const delay = ms => new Promise(resolve => { |
| 21 | setTimeout(resolve, ms); |
| 22 | }); |
| 23 | |
| 24 | const processExited = async (pid, timeout) => { |
| 25 | const endTime = Date.now() + timeout; |
no outgoing calls
no test coverage detected