(child)
| 73 | cwd: './test', |
| 74 | // Called after process is spawned |
| 75 | callback(child) { |
| 76 | setTimeout(function killChild() { |
| 77 | // Kill child after test case |
| 78 | child.kill(); |
| 79 | killed = true; |
| 80 | }, TIMEOUT_KILL); |
| 81 | } |
| 82 | }) |
| 83 | .then(function childProcessExited() { |
| 84 | // Process should be killed after a timeout, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…