From 3c0090d86f6e398ecf05c0eb427b9c3ff99538da Mon Sep 17 00:00:00 2001 From: naman-bruno Date: Fri, 16 May 2025 21:02:24 +0530 Subject: [PATCH] fix: runSingleRequest function --- packages/bruno-cli/src/runner/run-single-request.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/bruno-cli/src/runner/run-single-request.js b/packages/bruno-cli/src/runner/run-single-request.js index 3c5cc9f42..e03eef094 100644 --- a/packages/bruno-cli/src/runner/run-single-request.js +++ b/packages/bruno-cli/src/runner/run-single-request.js @@ -41,8 +41,7 @@ const runSingleRequest = async function ( collectionRoot, runtime, collection, - runSingleRequestByPathname, - noproxy + runSingleRequestByPathname ) { const { pathname: itemPathname } = item; const relativeItemPathname = path.relative(collectionPath, itemPathname); @@ -118,6 +117,7 @@ const runSingleRequest = async function ( const options = getOptions(); const insecure = get(options, 'insecure', false); + const noproxy = get(options, 'noproxy', false); const httpsAgentRequestFields = {}; if (insecure) { httpsAgentRequestFields['rejectUnauthorized'] = false;