Skip to content

Commit 3cc97be

Browse files
committed
chore: update TA aggregate copy
1 parent d20077c commit 3cc97be

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ describe('MetricsSection', () => {
316316
wrapper: wrapper('/gh/owner/repo/tests/main'),
317317
})
318318

319-
const title = await screen.findByText('Cumulative Failures')
319+
const title = await screen.findByText('Failed test runs')
320320
const context = await screen.findByText(1)
321321
const description = await screen.findByText(
322322
'The number of test failures on your default branch.'
@@ -373,7 +373,7 @@ describe('MetricsSection', () => {
373373
wrapper: wrapper('/gh/owner/repo/tests/main'),
374374
})
375375

376-
const title = await screen.findByText('Skipped tests')
376+
const title = await screen.findByText('Skipped test runs')
377377
const context = await screen.findByText(20)
378378
const description = await screen.findByText(
379379
'The number of skipped tests in your test suite.'

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -248,10 +248,9 @@ const TotalFailuresCard = ({
248248
<MetricCard>
249249
<MetricCard.Header>
250250
<MetricCard.Title className="flex items-center gap-2">
251-
Cumulative Failures
251+
Failed test runs
252252
<TooltipWithIcon>
253-
The sum of all test failures, incremented each time any test has
254-
failed.
253+
The number of individual runs of tests that failed.
255254
</TooltipWithIcon>
256255
</MetricCard.Title>
257256
</MetricCard.Header>
@@ -298,9 +297,9 @@ const TotalSkippedTestsCard = ({
298297
<MetricCard>
299298
<MetricCard.Header>
300299
<MetricCard.Title className="flex items-center gap-2">
301-
Skipped tests
300+
Skipped test runs
302301
<TooltipWithIcon>
303-
The number of tests that were skipped.
302+
The number of individual runs of tests that were skipped.
304303
</TooltipWithIcon>
305304
</MetricCard.Title>
306305
</MetricCard.Header>

0 commit comments

Comments
 (0)