fix(接口定义): 修复断言复制没有复制禁用状态的缺陷
This commit is contained in:
parent
80c1217fb9
commit
56e8e6ffca
|
@ -114,7 +114,9 @@ export default {
|
|||
this.jsonPath.description = this.jsonPath.expression + " expect: " + (this.jsonPath.expect ? this.jsonPath.expect : '');
|
||||
},
|
||||
copyRow() {
|
||||
this.list.splice(this.index + 1, 0, this.getJSONPath());
|
||||
let jsonPath = new JSONPath(this.jsonPath);
|
||||
jsonPath.description = jsonPath.expression + " expect: " + (jsonPath.expect ? jsonPath.expect : '');
|
||||
this.list.splice(this.index + 1, 0, jsonPath);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -99,7 +99,9 @@ export default {
|
|||
this.regex.description = this.regex.subject + " has: " + this.regex.expression;
|
||||
},
|
||||
copyRow() {
|
||||
this.list.splice(this.index + 1, 0, this.getRegex());
|
||||
let regex = new Regex(this.regex);
|
||||
regex.description = regex.subject + " has: " + regex.expression;
|
||||
this.list.splice(this.index + 1, 0, regex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue