fix(接口测试): 接口用例在请求内容选no auth 报错

【接口用例在请求内容选no auth
报错】https://www.tapd.cn/33805590/bugtrace/bugs/view?bug_id=1133805590001008973
This commit is contained in:
wxg0103 2021-12-23 16:50:26 +08:00
parent a8514fb774
commit 83de4967f5
1 changed files with 8 additions and 9 deletions

View File

@ -99,18 +99,17 @@ export default {
if (this.authConfig.username == undefined && this.authConfig.password == undefined) {
this.authConfig = authManager;
}
this.request.authManager = this.authConfig;
} else {
if (this.request.hashTree) {
for (let index in this.request.hashTree) {
if (this.request.hashTree[index].type === "AuthManager") {
this.request.hashTree.splice(index, 1);
}
}
let authManager = createComponent("AuthManager");
authManager.verification = "No Auth";
if (this.request.hashTree == undefined) {
this.request.hashTree = [];
}
this.request.authManager = {};
this.request.hashTree.push(authManager);
this.authConfig = authManager;
this.request.authManager = this.authConfig;
}
this.request.authManager = this.authConfig;
},
initData() {
if (this.request.hashTree) {