(name)
| 166 | } |
| 167 | |
| 168 | function tryBuiltinReporter(name) { |
| 169 | const builtinPath = kBuiltinReporters.get(name); |
| 170 | |
| 171 | if (builtinPath === undefined) { |
| 172 | return; |
| 173 | } |
| 174 | |
| 175 | return require(builtinPath); |
| 176 | } |
| 177 | |
| 178 | function shouldColorizeTestFiles(destinations) { |
| 179 | // This function assumes only built-in destinations (stdout/stderr) supports coloring |
no test coverage detected
searching dependent graphs…