Skip to content

Commit

Permalink
ci: fix rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
laurentsenta committed Jul 25, 2023
1 parent 415bd02 commit 0bc5af6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aggregate-into-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ const cellRender = (cell) => {
}

if (cell['fail'] > 0) {
return `:red_circle: (failed ${cell['fail']} / ${cell['total']})`;
return `:red_circle: (${cell['pass']} / ${cell['total']})`;
}
if (cell['skip'] > 0) {
return `:yellow_circle: (skipped ${cell['skip']} / ${cell['total']})`;
return `:yellow_circle: (skipped)`;
}
if (cell['pass'] > 0) {
return `:green_circle: (${cell['pass']} / ${cell['total']})`;
Expand Down

0 comments on commit 0bc5af6

Please sign in to comment.