docs(postman): Update documentation for postman tests (#2057)

This commit is contained in:
Pa1NarK
2023-09-04 13:03:39 +05:30
committed by GitHub
parent 2738fb7e4a
commit 119aeb49ca
3 changed files with 49 additions and 6 deletions

View File

@ -26,6 +26,9 @@ struct Args {
/// Admin API Key of the environment
#[arg(short, long = "admin_api_key")]
admin_api_key: String,
/// Optional Verbose logs
#[arg(short, long)]
verbose: bool,
}
fn main() {
@ -130,6 +133,10 @@ fn main() {
newman_command.arg("--color").arg("on");
if args.verbose {
newman_command.arg("--verbose");
}
// Execute the newman command
let output = newman_command.spawn();
let mut child = match output {