Skip to content

Commit

Permalink
fix(logs): properly show failures in parallel runs (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
wellwelwel authored Jun 12, 2024
1 parent e8409e9 commit 964b5a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/poku.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export async function poku(

if (showLogs && fileResults.fail.size > 0) {
write(
Array.from(fileResults.success)
Array.from(fileResults.fail)
.map(
([file, time]) =>
`${indentation.test}${format.fail('✘')} ${format.dim(`${file}${time}ms`)}`
Expand Down

0 comments on commit 964b5a2

Please sign in to comment.