From 9b382fa0911536a0bfa27ae0d8a67007cc1364f7 Mon Sep 17 00:00:00 2001 From: Anoop M D Date: Wed, 5 Jun 2024 20:37:15 +0530 Subject: [PATCH] Revert "fix: Move output to stderr #2123 (#2125)" (#2418) This reverts commit 1b4d9b8f6edfc8f712c165c347f9e3819c133532. --- packages/bruno-cli/src/commands/run.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/packages/bruno-cli/src/commands/run.js b/packages/bruno-cli/src/commands/run.js index 7cf5293fb7..00f592bd29 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -406,7 +406,8 @@ const handler = async function (argv) { return aSequence - bSequence; }); } else { - console.warn(chalk.yellow('Running Folder Recursively \n')); + console.log(chalk.yellow('Running Folder Recursively \n')); + bruJsons = getBruFilesRecursively(filename, testsOnly); } } @@ -460,7 +461,7 @@ const handler = async function (argv) { if (nextRequestIdx >= 0) { currentRequestIndex = nextRequestIdx; } else { - console.warn("Could not find request with name '" + nextRequestName + "'"); + console.error("Could not find request with name '" + nextRequestName + "'"); currentRequestIndex++; } } else { @@ -470,7 +471,7 @@ const handler = async function (argv) { const summary = printRunSummary(results); const totalTime = results.reduce((acc, res) => acc + res.response.responseTime, 0); - console.error(chalk.dim(chalk.grey(`Ran all requests - ${totalTime} ms`))); + console.log(chalk.dim(chalk.grey(`Ran all requests - ${totalTime} ms`))); if (outputPath && outputPath.length) { const outputDir = path.dirname(outputPath); @@ -493,14 +494,15 @@ const handler = async function (argv) { makeHtmlOutput(outputJson, outputPath); } - console.error(chalk.dim(chalk.grey(`Wrote results to ${outputPath}`))); + console.log(chalk.dim(chalk.grey(`Wrote results to ${outputPath}`))); } if (summary.failedAssertions + summary.failedTests + summary.failedRequests > 0) { process.exit(constants.EXIT_STATUS.ERROR_FAILED_COLLECTION); } } catch (err) { - console.error(chalk.red('Something went wrong: ' + err.message)); + console.log('Something went wrong'); + console.error(chalk.red(err.message)); process.exit(constants.EXIT_STATUS.ERROR_GENERIC); } };