refactor(接口测试): 优化场景断言置顶的方法
This commit is contained in:
parent
c4e4ad46b6
commit
731db1fb90
|
@ -1141,11 +1141,20 @@ export default {
|
||||||
if (item.type === type) {
|
if (item.type === type) {
|
||||||
item.active = true;
|
item.active = true;
|
||||||
isAssertions = true;
|
isAssertions = true;
|
||||||
return;
|
this.reloadTree = getUUID();
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
if (!isAssertions) {
|
if (!isAssertions) {
|
||||||
setComponent(type, this, plugin);
|
setComponent(type, this, plugin);
|
||||||
|
for (let i in this.scenarioDefinition) {
|
||||||
|
if (this.scenarioDefinition[i].type === "Assertions") {
|
||||||
|
this.scenarioDefinition[i].active = true;
|
||||||
|
let assertions = this.scenarioDefinition[i];
|
||||||
|
this.scenarioDefinition.splice(i, 1);
|
||||||
|
this.scenarioDefinition.unshift(assertions);
|
||||||
|
this.sort();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
setComponent(type, this, plugin);
|
setComponent(type, this, plugin);
|
||||||
|
|
Loading…
Reference in New Issue