Skip to content
This repository has been archived by the owner on Feb 8, 2019. It is now read-only.

Commit

Permalink
⚡ improvement(sauce): avoid spamming CI output
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Jun 14, 2016
1 parent 62393b2 commit e81478c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions template/config/karma.sauce.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ module.exports = config => {
browsers: Object.keys(batch),
customLaunchers: batch,
reporters: ['progress', 'saucelabs'],
reporters: process.env.CI
? ['dots', 'saucelabs'] // avoid spamming CI output
: ['progress', 'saucelabs'],
sauceLabs: {
testName: `${pack.name} unit tests`,
recordScreenshots: false,
Expand Down

0 comments on commit e81478c

Please sign in to comment.