Skip to content

Commit

Permalink
chore(tests): fix test output on CI
Browse files Browse the repository at this point in the history
Use reporters in karma.conf.js to avoid confusion in the future.
  • Loading branch information
chrisirhc authored and pkozlowski-opensource committed Dec 29, 2013
1 parent afd9f36 commit 28c85de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ module.exports = function(grunt) {
jenkins: {
singleRun: true,
colors: false,
reporter: ['dots', 'junit'],
reporters: ['dots', 'junit'],
browsers: ['Chrome', 'ChromeCanary', 'Firefox', 'Opera', '/Users/jenkins/bin/safari.sh', '/Users/jenkins/bin/ie9.sh']
},
travis: {
Expand Down
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ browsers = [

// test results reporter to use
// possible values: dots || progress
reporter = 'progress';
reporters = ['progress'];

// web server port
port = 9018;
Expand Down

0 comments on commit 28c85de

Please sign in to comment.