(type)
| 591 | } |
| 592 | |
| 593 | const handleOutput = (type) => (chunk) => { |
| 594 | if (hideOutput) { |
| 595 | outputChunks.push({ type, chunk }) |
| 596 | } else { |
| 597 | process.stdout.write(chunk) |
| 598 | } |
| 599 | } |
| 600 | const stdout = handleOutput('stdout') |
| 601 | stdout( |
| 602 | [ |
no test coverage detected
searching dependent graphs…