Skip to content

Commit

Permalink
Remove .dim from displayName for better readability (jestjs#4377)
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeliog authored and cpojer committed Aug 27, 2017
1 parent a3ed980 commit 17cdf53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-cli/src/reporters/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const printDisplayName = (config: ProjectConfig) => {

if (displayName) {
return chalk.supportsColor
? chalk.reset.inverse.white.dim(` ${displayName} `)
? chalk.reset.inverse.white(` ${displayName} `)
: displayName;
}

Expand Down

0 comments on commit 17cdf53

Please sign in to comment.