(cb, err, stdout, stderr)
| 7 | const util = require('util'); |
| 8 | |
| 9 | function execCb(cb, err, stdout, stderr) { |
| 10 | console.log(stdout); |
| 11 | console.error(stderr); |
| 12 | cb(err); |
| 13 | } |
| 14 | |
| 15 | const options = { |
| 16 | coveragePaths: [ |
nothing calls this directly
no test coverage detected
searching dependent graphs…