Skip to content

Commit 93db669

Browse files
committed
tooltip copy
1 parent 51280b6 commit 93db669

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/pages/RepoPage/FailedTestsTab/FailedTestsPage/MetricsSection/MetricsSection.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ describe('MetricsSection', () => {
308308
wrapper: wrapper('/gh/owner/repo/tests/main'),
309309
})
310310

311-
const title = await screen.findByText('Failures')
311+
const title = await screen.findByText('Cumulative Failures')
312312
const context = await screen.findByText(1)
313313
const description = await screen.findByText(
314314
'The number of test failures across all branches.'

src/pages/RepoPage/FailedTestsTab/FailedTestsPage/MetricsSection/MetricsSection.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,10 @@ const TotalFailuresCard = ({
249249
<MetricCard>
250250
<MetricCard.Header>
251251
<MetricCard.Title className="flex items-center gap-2">
252-
Failures
252+
Cumulative Failures
253253
<TooltipWithIcon>
254-
The number of failures indicate the number of errors that caused the
255-
tests to fail.
254+
The sum of all test failures, incremented each time any test has
255+
failed.
256256
</TooltipWithIcon>
257257
</MetricCard.Title>
258258
</MetricCard.Header>

0 commit comments

Comments
 (0)