We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 178773d commit 2de9b87Copy full SHA for 2de9b87
packages/bruno-cli/src/commands/run.js
@@ -617,7 +617,7 @@ const handler = async function (argv) {
617
}
618
619
620
- if (summary.failedAssertions + summary.failedTests + summary.failedRequests > 0) {
+ if ((summary.failedAssertions + summary.failedTests + summary.failedRequests > 0) || (summary?.errorRequests > 0)) {
621
process.exit(constants.EXIT_STATUS.ERROR_FAILED_COLLECTION);
622
623
} catch (err) {
0 commit comments