fix(UI自动化): 修复任务中心批量执行集合报告名称展示错误

--bug=1016069 --user=刘瑶 【UI测试】批量执行场景-任务中心-类型显示场景测试用例 https://www.tapd.cn/55049933/s/1228991
This commit is contained in:
nathan.liu 2022-08-22 12:01:00 +08:00 committed by nathanliu2022
parent d8681bb12d
commit d349ad134e
3 changed files with 5 additions and 5 deletions

@ -1 +1 @@
Subproject commit 22ee4d6695158610c05d355ea2aab4b06c82f499
Subproject commit d82febe01920178e5bcdbdc8364c347e14886d26

View File

@ -330,10 +330,10 @@ export default {
getModeName(item) {
switch (item.executionModule) {
case "SCENARIO":
if (item.reportType !== "UI_INDEPENDENT") {
return this.$t('test_track.scenario_test_case');
} else {
if (item.reportType === "UI_INDEPENDENT" || item.reportType === "UI_INTEGRATED") {
return this.$t("test_track.ui_scenario_test_case");
} else {
return this.$t('test_track.scenario_test_case');
}
case "PERFORMANCE":
return this.$t('test_track.performance_test_case');

@ -1 +1 @@
Subproject commit 6b1b4f46b1beb3092349e38cf295e8a3e8ec3b93
Subproject commit 99c2acebdffef28a5b1a71299c1552095a2976b3