Skip to content

Commit eef307d

Browse files
committed
Merge pull request #2072 from thedark1337/master
Fix #2071: Removed color code to fix Chalk colors
2 parents a661e6c + 9f3774f commit eef307d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/reporters/base.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ var color = exports.color = function(type, str) {
105105
if (!exports.useColors) {
106106
return String(str);
107107
}
108-
return '\u001b[' + exports.colors[type](str) + '\u001b[0m';
108+
return exports.colors[type](str);
109109
};
110110

111111
/**

0 commit comments

Comments
 (0)