( globalConfig: Config.GlobalConfig, configs: Array<Config.ProjectConfig> | Config.ProjectConfig, outputStream: WriteStream, )
| 11 | |
| 12 | // if the output here changes, update `getConfig` in e2e/runJest.ts |
| 13 | export default function logDebugMessages( |
| 14 | globalConfig: Config.GlobalConfig, |
| 15 | configs: Array<Config.ProjectConfig> | Config.ProjectConfig, |
| 16 | outputStream: WriteStream, |
| 17 | ): void { |
| 18 | const output = { |
| 19 | configs, |
| 20 | globalConfig: { |
| 21 | ...globalConfig, |
| 22 | testPathPatterns: globalConfig.testPathPatterns.patterns, |
| 23 | }, |
| 24 | version: VERSION, |
| 25 | }; |
| 26 | outputStream.write(`${JSON.stringify(output, null, ' ')}\n`); |
| 27 | } |
no test coverage detected