mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-23 20:55:41 +00:00
Add example of using tags with CLI runner
This commit is contained in:
@@ -250,7 +250,11 @@ const builder = async (yargs) => {
|
||||
)
|
||||
.example('$0 run --client-cert-config client-cert-config.json', 'Run a request with Client certificate configurations')
|
||||
.example('$0 run folder --delay delayInMs', 'Run a folder with given miliseconds delay between each requests.')
|
||||
.example('$0 run --noproxy', 'Run requests with system proxy disabled');
|
||||
.example('$0 run --noproxy', 'Run requests with system proxy disabled')
|
||||
.example(
|
||||
'$0 run folder --tags=hello,world --exclude-tags=skip',
|
||||
'Run only requests with tags "hello" or "world" and exclude any request with tag "skip".'
|
||||
);
|
||||
};
|
||||
|
||||
const handler = async function (argv) {
|
||||
|
||||
Reference in New Issue
Block a user