Skip to content

Include full output from mocha/karma in CI #7567

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions config/karma.base.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
5 changes: 0 additions & 5 deletions config/mocharc.node.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down