Skip to content

Commit

Permalink
feat: show completion progress
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Dec 2, 2024
1 parent e422ca5 commit 4da8b5f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/testStages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,15 @@ export class TestStages {
label: 'Status',
get: (data): string | undefined => data?.status,
},
{
stage: 'Polling for Test Results',
type: 'dynamic-key-value',
label: 'Completed Tests',
get: (data): string | undefined =>
data?.totalTestCases && data?.passingTestCases && data?.failingTestCases
? `${data?.passingTestCases + data?.failingTestCases}/${data?.totalTestCases}`
: undefined,
},
{
stage: 'Polling for Test Results',
type: 'dynamic-key-value',
Expand Down

0 comments on commit 4da8b5f

Please sign in to comment.