From 17dac6be6703ba8b5206c6767fe60f5a7f02a334 Mon Sep 17 00:00:00 2001 From: j-lebek <88532720+j-lebek@users.noreply.github.com> Date: Sat, 6 Apr 2024 02:40:06 +0200 Subject: [PATCH] Fix typo in synopsis (#1787) --- packages/bruno-cli/src/commands/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/bruno-cli/src/commands/run.js b/packages/bruno-cli/src/commands/run.js index 2106bdc2b..1d95afc75 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -240,7 +240,7 @@ const builder = async (yargs) => { '$0 run request.bru --output results.html --format html', 'Run a request and write the results to results.html in html format in the current directory' ) - .example('$0 run request.bru --test-only', 'Run all requests that have a test'); + .example('$0 run request.bru --tests-only', 'Run all requests that have a test'); }; const handler = async function (argv) {