mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 09:07:09 +08:00
docs(postman): Update documentation for postman tests (#2057)
This commit is contained in:
@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user