Tests and pre-request scripts are saved to collections. Fixes #643

This commit is contained in:
Liyas Thomas
2020-03-26 07:11:24 +05:30
parent 8568f4c2a9
commit ac0a89ae26

View File

@@ -1528,6 +1528,14 @@ export default {
this.rawInput = newValue.rawInput
this.contentType = newValue.contentType
this.requestType = newValue.requestType
if (newValue.preRequestScript) {
this.showPreRequestScript = true
this.preRequestScript = newValue.preRequestScript
}
if (newValue.testScript) {
this.testsEnabled = true
this.testScript = newValue.testScript
}
},
editingRequest(newValue) {
this.editRequest = newValue
@@ -2570,6 +2578,8 @@ export default {
rawInput: this.rawInput,
contentType: this.contentType,
requestType: this.requestType,
preRequestScript: this.showPreRequestScript == true ? this.preRequestScript : null,
testScript: this.testsEnabled == true ? this.testScript : null,
}
if (this.selectedRequest.url) {
this.editRequest = Object.assign({}, this.selectedRequest, this.editRequest)