Skip to content

Commit

Permalink
Made table headers cyan
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed Dec 2, 2024
1 parent a85f7ee commit a4a9655
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/evalite-vitest/src/reporter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,11 @@ export default class EvaliteReporter extends BasicReporter {
this.ctx.logger.log(
table(
[
[c.bold("Input"), c.bold("Output"), c.bold("Score")],
[
c.cyan(c.bold("Input")),
c.cyan(c.bold("Output")),
c.cyan(c.bold("Score")),
],
...props.map((p) => [p.input, p.output, displayScore(p.score)]),
],
{
Expand Down

0 comments on commit a4a9655

Please sign in to comment.