(child)
| 159 | } |
| 160 | |
| 161 | async function stop(child) { |
| 162 | // Without this line, the child process is still able to receive IPC, but is unable to send additional messages |
| 163 | watcher.destroyIPC(child); |
| 164 | watcher.clearFileFilters(); |
| 165 | const clearGraceReport = reportGracefulTermination(); |
| 166 | await killAndWait(); |
| 167 | clearGraceReport(); |
| 168 | } |
| 169 | |
| 170 | let restarting = false; |
| 171 |
no test coverage detected
searching dependent graphs…