diff --git a/frontend/src/business/components/api/automation/report/ApiReportDetail.vue b/frontend/src/business/components/api/automation/report/ApiReportDetail.vue index c603a4228a..eaf2527f3f 100644 --- a/frontend/src/business/components/api/automation/report/ApiReportDetail.vue +++ b/frontend/src/business/components/api/automation/report/ApiReportDetail.vue @@ -403,11 +403,7 @@ this.fullTreeNodes = report.steps; this.content.console = report.console; this.content.error = report.error; - let successCount = (report.total - report.error - report.errorCode); - if (successCount >= report.unExecute) { - // 测试用例的集合报告中如果含有未执行的步骤,则成功数量统计要把未执行的数量给去掉 - successCount = successCount - report.unExecute; - } + let successCount = (report.total - report.error - report.errorCode - report.unExecute); this.content.success = successCount; this.totalTime = report.totalTime; } @@ -460,10 +456,6 @@ this.content.console = report.console; this.content.error = report.error; let successCount = (report.total - report.error - report.errorCode - report.unExecute); - if (successCount >= report.unExecute) { - // 测试用例的集合报告中如果含有未执行的步骤,则成功数量统计要把未执行的数量给去掉 - successCount = successCount - report.unExecute; - } this.content.success = successCount; this.totalTime = report.totalTime; } diff --git a/frontend/src/business/components/api/automation/report/SysnApiReportDetail.vue b/frontend/src/business/components/api/automation/report/SysnApiReportDetail.vue index 6fff470598..8f52ccb251 100644 --- a/frontend/src/business/components/api/automation/report/SysnApiReportDetail.vue +++ b/frontend/src/business/components/api/automation/report/SysnApiReportDetail.vue @@ -308,7 +308,8 @@ export default { this.content = {scenarios: []}; } this.content.error = this.content.error; - this.content.success = (this.content.total - this.content.error - this.content.errorCode); + + this.content.success = (this.content.total - this.content.error - this.content.errorCode - this.content.unExecute); this.totalTime = this.content.totalTime; this.fullTreeNodes = this.content.steps; this.recursiveSorting(this.fullTreeNodes);