Skip to content

Commit

Permalink
Ignore unknown status in results table
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrabovsky committed Jul 28, 2023
1 parent 49d1dca commit e226a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/PageResultsNew/TestResultsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ const isRequiredAwaited = ({ required, status, waiver }: CiTest) =>
*/
const isRequiredFailed = ({ required, status, waiver }: CiTest) =>
required &&
(status === 'error' || status === 'failed' || status === 'unknown') &&
(status === 'error' || status === 'failed') &&
!waiver;

/**
Expand Down

0 comments on commit e226a25

Please sign in to comment.