From a066fd74b5367c157ef2cfa8bb9cf7412ef48bfb Mon Sep 17 00:00:00 2001 From: "schwaby.io" Date: Mon, 16 Oct 2023 17:04:11 -0700 Subject: [PATCH] Fix to properly return testFinalResult --- lib/runTests.js | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/runTests.js b/lib/runTests.js index 835f61d..5446f1a 100644 --- a/lib/runTests.js +++ b/lib/runTests.js @@ -227,6 +227,9 @@ const runTests = function runTests() { //sendSummaryResultsToSlack await sendSummaryResultsToSlack(settings, testResultSummary, testResultsUrl) + //Return testFinalResult + return testFinalResult + } catch (error) { throw error } diff --git a/package.json b/package.json index 6516c6d..be8f4d2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@schwabyio/xrun", - "version": "2.3.0", + "version": "2.3.1", "description": "Postman Extended Runner", "homepage": "https://github.com/schwabyio/xrun", "author": "schwabyio",