From 1b91f12a43045011d472f34279d0d82177b29a72 Mon Sep 17 00:00:00 2001 From: Sam Nowakowski Date: Mon, 6 Oct 2025 08:25:14 +0200 Subject: [PATCH] Correct --default-time-limit syntax (use = instead of space) --- cli-api-reference.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli-api-reference.md b/cli-api-reference.md index 17fc019..016aa57 100644 --- a/cli-api-reference.md +++ b/cli-api-reference.md @@ -61,7 +61,7 @@ In the preceding chapters of the Pest documentation, we have covered numerous CL - `--strict-global-state`: Be strict about changes to global state. - `--disallow-test-output`: Be strict about output during tests. - `--enforce-time-limit`: Enforce time limit based on test size. -- `--default-time-limit `: Timeout in seconds for tests that have no declared size. +- `--default-time-limit=`: Timeout in seconds for tests that have no declared size. - `--dont-report-useless-tests`: Do not report tests that do not test anything. - `--stop-on-defect`: Stop execution upon first not-passed test. - `--stop-on-error`: Stop execution upon first error.