(destinations)
| 176 | } |
| 177 | |
| 178 | function shouldColorizeTestFiles(destinations) { |
| 179 | // This function assumes only built-in destinations (stdout/stderr) supports coloring |
| 180 | return ArrayPrototypeSome(destinations, (_, index) => { |
| 181 | const destination = kBuiltinDestinations.get(destinations[index]); |
| 182 | return destination && shouldColorize(destination); |
| 183 | }); |
| 184 | } |
| 185 | |
| 186 | function parsePreviousRuns(rerunFailuresFilePath) { |
| 187 | let data; |
no test coverage detected
searching dependent graphs…