Skip to content

Commit

Permalink
fix: 🐛 Fix logview totals
Browse files Browse the repository at this point in the history
  • Loading branch information
timbrinded committed Dec 5, 2024
1 parent e0c4e1f commit d273eb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/cmds/components/LogViewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ export const LogViewer: React.FC<LogViewerProps> = ({
minHeight={4}
>
<Text>
{`${parsedOutput.numPassedTests}/${parsedOutput.numTotalTests} tests passed`}
{`${parsedOutput.numPassedTests}/${parsedOutput.numTotalTests - parsedOutput.numPendingTests} tests passed`}
{parsedOutput.numFailedTests > 0 ? ` (${parsedOutput.numFailedTests} failed)` : ""}
</Text>
</Box>
Expand Down

0 comments on commit d273eb3

Please sign in to comment.