Skip to content

Commit

Permalink
fix: update language in testing MSO
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Dec 18, 2024
1 parent f0c5426 commit 0eefc95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/testStages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export class TestStages {
{
stage: 'Polling for Test Results',
type: 'dynamic-key-value',
label: 'Completed Tests',
label: 'Completed Test Cases',
get: (data): string | undefined =>
data?.totalTestCases && data?.passingTestCases && data?.failingTestCases
? `${data?.passingTestCases + data?.failingTestCases}/${data?.totalTestCases}`
Expand All @@ -52,13 +52,13 @@ export class TestStages {
{
stage: 'Polling for Test Results',
type: 'dynamic-key-value',
label: 'Passing Tests',
label: 'Passing Test Cases',
get: (data): string | undefined => data?.passingTestCases?.toString(),
},
{
stage: 'Polling for Test Results',
type: 'dynamic-key-value',
label: 'Failing Tests',
label: 'Failing Test Cases',
get: (data): string | undefined => data?.failingTestCases?.toString(),
},
],
Expand Down

0 comments on commit 0eefc95

Please sign in to comment.