diff --git a/jest/jest.config.js b/jest/jest.config.js index 37a2ee48658b..6bb8d30df35e 100644 --- a/jest/jest.config.js +++ b/jest/jest.config.js @@ -19,4 +19,11 @@ module.exports = { __DEBUG_BUILD__: true, }, testPathIgnorePatterns: ['/build/', '/node_modules/'], + + // On CI, we do not need the pretty CLI output, as it makes logs harder to parse + ...(process.env.CI + ? { + coverageReporters: ['json', 'lcov', 'clover'], + } + : {}), };