From 7899b04c4096441d96ec5567be23479a51fa15ae Mon Sep 17 00:00:00 2001 From: Chris Nagel Date: Tue, 19 Dec 2023 08:04:56 +0100 Subject: [PATCH] Update bruno-cli/options-description - Update of the options description due to the new available formats (json/junit) --- 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 2151ff56..56cb0b03 100644 --- a/packages/bruno-cli/src/commands/run.js +++ b/packages/bruno-cli/src/commands/run.js @@ -192,7 +192,7 @@ const builder = async (yargs) => { }) .option('format', { alias: 'f', - describe: 'Format for the file results', + describe: 'Format of the file results; available formats are "json" (default) or "junit"', default: 'json', type: 'string' })