( stream: string, options: RunJestOptions, )
| 136 | } |
| 137 | |
| 138 | function normalizeStreamString( |
| 139 | stream: string, |
| 140 | options: RunJestOptions, |
| 141 | ): string { |
| 142 | if (options.stripAnsi) stream = stripAnsi(stream); |
| 143 | stream = normalizeIcons(stream); |
| 144 | |
| 145 | return stream; |
| 146 | } |
| 147 | |
| 148 | function normalizeStdoutAndStderrOnResult( |
| 149 | result: RunJestResult, |
no test coverage detected