Skip to content

Commit

Permalink
Merge pull request #2072 from thedark1337/master
Browse files Browse the repository at this point in the history
Fix #2071: Removed color code to fix Chalk colors
  • Loading branch information
boneskull committed Jan 26, 2016
2 parents a661e6c + 9f3774f commit eef307d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/reporters/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ var color = exports.color = function(type, str) {
if (!exports.useColors) {
return String(str);
}
return '\u001b[' + exports.colors[type](str) + '\u001b[0m';
return exports.colors[type](str);
};

/**
Expand Down

0 comments on commit eef307d

Please sign in to comment.