From ac0a89ae269ce56d05b3453f1dcd62fc08927b44 Mon Sep 17 00:00:00 2001 From: Liyas Thomas Date: Thu, 26 Mar 2020 07:11:24 +0530 Subject: [PATCH] :sparkles: Tests and pre-request scripts are saved to collections. Fixes #643 --- pages/index.vue | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pages/index.vue b/pages/index.vue index 672c6780c..b0345666e 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -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)