refactor(接口测试): 优化失败重试的结果显示
--bug=1015123 --user=赵勇 【测试跟踪】失败重试次数展示的2个问题 https://www.tapd.cn/55049933/s/1206195
This commit is contained in:
parent
24b2183600
commit
b3896e8022
|
@ -80,6 +80,10 @@ public class ApiJmeterFileService {
|
||||||
detail = list.get(0);
|
detail = list.get(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (detail != null) {
|
||||||
|
runRequest.setRetryEnable(detail.getRetryEnable());
|
||||||
|
runRequest.setRetryNum(detail.getRetryNumber());
|
||||||
|
}
|
||||||
Map<String, String> envMap = new LinkedHashMap<>();
|
Map<String, String> envMap = new LinkedHashMap<>();
|
||||||
if (detail != null && StringUtils.isNotEmpty(detail.getEvnMap())) {
|
if (detail != null && StringUtils.isNotEmpty(detail.getEvnMap())) {
|
||||||
envMap = JSON.parseObject(detail.getEvnMap(), Map.class);
|
envMap = JSON.parseObject(detail.getEvnMap(), Map.class);
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
:before-close="handleClose"
|
:before-close="handleClose"
|
||||||
:visible.sync="visible"
|
:visible.sync="visible"
|
||||||
:with-header="false"
|
:with-header="false"
|
||||||
size="calc(100% - var(--asideWidth))"
|
size="100%"
|
||||||
:modal-append-to-body="false"
|
:modal-append-to-body="false"
|
||||||
ref="drawer"
|
ref="drawer"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Reference in New Issue