ci(postman): add users collection (#4897)

This commit is contained in:
Apoorv Dixit
2024-06-10 18:17:53 +05:30
committed by GitHub
parent adb9b11f69
commit a2b17cbc96
42 changed files with 1181 additions and 10 deletions

View File

@ -1,9 +1,10 @@
use std::process::{exit, Command};
use anyhow::Result;
use test_utils::newman_runner;
fn main() {
let mut runner = newman_runner::generate_newman_command();
fn main() -> Result<()> {
let mut runner = newman_runner::generate_runner()?;
// Execute the newman command
let output = runner.newman_command.spawn();