Skip to content

Commit

Permalink
chore(docs): rename parameter in checkMultiple description
Browse files Browse the repository at this point in the history
  • Loading branch information
koralowiec committed Sep 18, 2024
1 parent 6c55b64 commit 6e88d20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/features/test.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,12 +266,12 @@ Note:

Example: `check "python is available" python3 --version`

### `checkMultiple LABEL MINIMUM_NUMBER_OF_PASSED_COMMANDS EXPRESSIONS...`
### `checkMultiple LABEL MINIMUM_NUMBER_OF_PASSED_EXPRESSIONS EXPRESSIONS...`

Executes multiple `EXPRESSIONS` (commands) and prints success/failed depending on the number of successful executions. If the number of successful executions is equal to or higher than `MINIMUM_NUMBER_OF_PASSED_COMMANDS`, the check is considered a success.
Executes multiple `EXPRESSIONS` (commands) and prints success/failed depending on the number of successful executions. If the number of successful executions is equal to or higher than `MINIMUM_NUMBER_OF_PASSED_EXPRESSIONS`, the check is considered a success.

Note:
- `MINIMUM_NUMBER_OF_PASSED_COMMANDS` should not be higher than the total number of `EXPRESSIONS`.
- `MINIMUM_NUMBER_OF_PASSED_EXPRESSIONS` should not be higher than the total number of `EXPRESSIONS`.
- Commands passed as expressions must be enclosed in quotes.

Example: `checkMultiple "python and node are available" 2 "python3 --version" "node --version"`
Expand Down

0 comments on commit 6e88d20

Please sign in to comment.