Skip to content

Commit

Permalink
chore: fix jshint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Krummsdorf committed Jul 28, 2016
1 parent 25cbe87 commit 4cace54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -41,7 +41,7 @@ var MochaReporter = function (baseReporterDecorator, formatError, config) {

var outputMode = config.mochaReporter.output || 'full';
var ignoreSkipped = config.mochaReporter.ignoreSkipped || false;
var divider = config.mochaReporter.hasOwnProperty('divider') ? config.mochaReporter.divider : '='
var divider = config.mochaReporter.hasOwnProperty('divider') ? config.mochaReporter.divider : '=';
divider = repeatString(divider || '', process.stdout.columns || 80);

// disable chalk when colors is set to false
Expand Down

0 comments on commit 4cace54

Please sign in to comment.