fix[Mock]: fixed mock bug

This commit is contained in:
Pan 2019-04-01 17:38:44 +08:00
parent 20f6150741
commit 53f1820d09
1 changed files with 3 additions and 1 deletions

View File

@ -11,8 +11,10 @@ Mock.XHR.prototype.proxy_send = Mock.XHR.prototype.send
Mock.XHR.prototype.send = function() { Mock.XHR.prototype.send = function() {
if (this.custom.xhr) { if (this.custom.xhr) {
this.custom.xhr.withCredentials = this.withCredentials || false this.custom.xhr.withCredentials = this.withCredentials || false
if (this.responseType) {
this.custom.xhr.responseType = this.responseType this.custom.xhr.responseType = this.responseType
} }
}
this.proxy_send(...arguments) this.proxy_send(...arguments)
} }