fix(接口测试): 修复场景步骤执行结果获取不到问题

--bug=1009281 --user=赵勇 [github#8902]接口自动化中部分引用场景会存在执行后无执行记录 https://www.tapd.cn/55049933/s/1087601
This commit is contained in:
fit2-zhao 2021-12-28 15:28:26 +08:00 committed by fit2-zhao
parent 8a3aa6da35
commit 40d59c9de9
2 changed files with 23 additions and 19 deletions

View File

@ -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;

View File

@ -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;