fix(接口测试): 修复场景步骤执行结果获取不到问题
--bug=1009281 --user=赵勇 [github#8902]接口自动化中部分引用场景会存在执行后无执行记录 https://www.tapd.cn/55049933/s/1087601
This commit is contained in:
parent
8a3aa6da35
commit
40d59c9de9
|
@ -611,6 +611,7 @@ export default {
|
|||
});
|
||||
},
|
||||
stop() {
|
||||
if (this.reportId) {
|
||||
let url = "/api/automation/stop/" + this.reportId;
|
||||
this.$get(url, response => {
|
||||
this.debugLoading = false;
|
||||
|
@ -630,6 +631,7 @@ export default {
|
|||
}
|
||||
});
|
||||
this.runScenario = undefined;
|
||||
}
|
||||
},
|
||||
clearDebug() {
|
||||
this.reqError = 0;
|
||||
|
|
|
@ -176,7 +176,9 @@ export default {
|
|||
methods: {
|
||||
run() {
|
||||
this.scenario.run = true;
|
||||
this.$emit('runScenario', this.scenario);
|
||||
let runScenario = JSON.parse(JSON.stringify(this.scenario));
|
||||
runScenario.hashTree = [this.scenario];
|
||||
this.$emit('runScenario', runScenario);
|
||||
},
|
||||
stop() {
|
||||
this.scenario.run = false;
|
||||
|
|
Loading…
Reference in New Issue