Skip to content

Commit

Permalink
Fix #2071: Removed color code to fix Chalk colors
Browse files Browse the repository at this point in the history
  • Loading branch information
thedark1337 committed Jan 26, 2016
1 parent a661e6c commit 9f3774f
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 9f3774f

Please sign in to comment.