Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(test_utils): Update postman docs #3055

Merged
merged 1 commit into from
Dec 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions crates/test_utils/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ The heart of `newman`(with directory support) and `UI-tests`

Required fields:

- `--admin_api_key` -- Admin API Key of the environment. `test_admin` is the Admin API Key for running locally
- `--base_url` -- Base URL of the environment. `http://127.0.0.1:8080` / `http://localhost:8080` is the Base URL for running locally
- `--connector_name` -- Name of the connector that you wish to run. Example: `adyen`, `shift4`, `stripe`
- `--admin-api-key` -- Admin API Key of the environment. `test_admin` is the Admin API Key for running locally
- `--base-url` -- Base URL of the environment. `http://127.0.0.1:8080` / `http://localhost:8080` is the Base URL for running locally
- `--connector-name` -- Name of the connector that you wish to run. Example: `adyen`, `shift4`, `stripe`

Optional fields:

Expand All @@ -46,7 +46,7 @@ Optional fields:

- Tests can be run with the following command:
```shell
cargo run --package test_utils --bin test_utils -- --connector_name=<connector_name> --base_url=<base_url> --admin_api_key=<admin_api_key> \
cargo run --package test_utils --bin test_utils -- --connector-name=<connector_name> --base-url=<base_url> --admin-api-key=<admin_api_key> \
# optionally
--folder "<folder_name_1>,<folder_name_2>,...<folder_name_n>" --verbose
```
Expand Down
Loading