diff --git a/config/karma.base.js b/config/karma.base.js index 593de711579..9740f844d91 100644 --- a/config/karma.base.js +++ b/config/karma.base.js @@ -87,11 +87,5 @@ const config = { config.mochaReporter = { showDiff: true }; -// Make it easy to spot failed tests in CI -if (process.env.CI) { - config.mochaReporter = { - output: 'minimal' - }; -} module.exports = config; diff --git a/config/mocharc.node.js b/config/mocharc.node.js index 6272a5a9672..e493fce4d52 100644 --- a/config/mocharc.node.js +++ b/config/mocharc.node.js @@ -29,11 +29,6 @@ const config = { exit: true }; -// use min reporter in CI to make it easy to spot failed tests -if (process.env.CI) { - config.reporter = 'min'; -} - // Firestore uses babel to compile tests in Nodejs if (process.env.NO_TS_NODE) { delete config.require;