Skip to content

Commit 4decdf6

Browse files
authored
Include full output from mocha/karma in CI (#7567)
1 parent 5ae289e commit 4decdf6

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

config/karma.base.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,5 @@ const config = {
8787
config.mochaReporter = {
8888
showDiff: true
8989
};
90-
// Make it easy to spot failed tests in CI
91-
if (process.env.CI) {
92-
config.mochaReporter = {
93-
output: 'minimal'
94-
};
95-
}
9690

9791
module.exports = config;

config/mocharc.node.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@ const config = {
2929
exit: true
3030
};
3131

32-
// use min reporter in CI to make it easy to spot failed tests
33-
if (process.env.CI) {
34-
config.reporter = 'min';
35-
}
36-
3732
// Firestore uses babel to compile tests in Nodejs
3833
if (process.env.NO_TS_NODE) {
3934
delete config.require;

0 commit comments

Comments
 (0)