File tree 2 files changed +6
-2
lines changed
client/components/BotRunTestStatusList
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -60,8 +60,11 @@ const BotRunTestStatusList = ({ testPlanReportId }) => {
60
60
} ;
61
61
let anyPossibleUpdates = false ;
62
62
if ( testPlanRunsQueryResult ?. testPlanRuns ) {
63
- for ( const { collectionJob } of testPlanRunsQueryResult . testPlanRuns ) {
64
- if ( collectionJob ?. testStatus ) {
63
+ for ( const {
64
+ collectionJob,
65
+ tester
66
+ } of testPlanRunsQueryResult . testPlanRuns ) {
67
+ if ( collectionJob ?. testStatus && tester ?. isBot ) {
65
68
for ( const { status } of collectionJob . testStatus ) {
66
69
counter [ status ] ++ ;
67
70
if ( status === 'QUEUED' || status === 'RUNNING' ) {
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export const TEST_PLAN_RUNS_TEST_RESULTS_QUERY = gql`
6
6
id
7
7
tester {
8
8
username
9
+ isBot
9
10
}
10
11
testResults {
11
12
id
You can’t perform that action at this time.
0 commit comments