Skip to content

Commit cecaa40

Browse files
committed
Fix Suite Run Polling
1 parent 79ea680 commit cecaa40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/suite/run/SuiteRunDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export function SuiteRunDetails({ run }: { run: TSuiteRun }) {
7575
</div>
7676
</div>
7777

78-
<Polling poll={run.status === 'running'} />
78+
<Polling poll={run.status === 'running' || run.status === 'pending'} />
7979
</div>
8080
)
8181
}

0 commit comments

Comments
 (0)