From 9132755d49268b7947f8eff9dc231ab4990c7edb Mon Sep 17 00:00:00 2001 From: naman-bruno Date: Fri, 16 May 2025 20:52:15 +0530 Subject: [PATCH] add: noproxy in options --- packages/bruno-cli/src/commands/run.js | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/packages/bruno-cli/src/commands/run.js b/packages/bruno-cli/src/commands/run.js index 2cd896441..14a058f8d 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -345,6 +345,9 @@ const handler = async function (argv) { if (disableCookies) { options['disableCookies'] = true; } + if (noproxy) { + options['noproxy'] = true; + } if (cacert && cacert.length) { if (insecure) { console.error(chalk.red(`Ignoring the cacert option since insecure connections are enabled`)); @@ -457,8 +460,7 @@ const handler = async function (argv) { collectionRoot, runtime, collection, - runSingleRequestByPathname, - noproxy + runSingleRequestByPathname ); resolve(res?.response); } @@ -483,8 +485,7 @@ const handler = async function (argv) { collectionRoot, runtime, collection, - runSingleRequestByPathname, - noproxy + runSingleRequestByPathname ); const isLastRun = currentRequestIndex === requestItems.length - 1;