(error)
| 41 | let target = null; |
| 42 | |
| 43 | function cleanup(error) { |
| 44 | if (cli) { |
| 45 | cli.quit(); |
| 46 | cli = null; |
| 47 | } |
| 48 | if (target) { |
| 49 | target.kill(); |
| 50 | target = null; |
| 51 | } |
| 52 | assert.ifError(error); |
| 53 | } |
| 54 | |
| 55 | try { |
| 56 | const { childProc, host, port } = await launchTarget('--inspect=0', script); |
no test coverage detected
searching dependent graphs…