Skip to content

Commit

Permalink
fix: don't use dim color for succeeded tests (#7059)
Browse files Browse the repository at this point in the history
  • Loading branch information
sheremet-va authored Dec 11, 2024
1 parent 96f47d3 commit 8a6f5f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vitest/src/node/reporters/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export abstract class BaseReporter implements Reporter {
}

else if (this.renderSucceed || anyFailed) {
this.log(` ${c.dim(getStateSymbol(test))} ${getTestName(test, c.dim(' > '))}${suffix}`)
this.log(` ${getStateSymbol(test)} ${getTestName(test, c.dim(' > '))}${suffix}`)
}
}
}
Expand Down

0 comments on commit 8a6f5f1

Please sign in to comment.