From 63d1867e67a83646e00501779d7018e5d601844d Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Fri, 4 Oct 2024 16:21:13 +0100 Subject: [PATCH] pest: add examples for Pest 3.x (#13976) --- pages/common/pest.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pages/common/pest.md b/pages/common/pest.md index 9f024339b..24faa09c2 100644 --- a/pages/common/pest.md +++ b/pages/common/pest.md @@ -22,3 +22,11 @@ - Run tests with coverage and fail if the coverage is less than the minimum percentage: `pest --coverage --min={{80}}` + +- Run tests in parallel: + +`pest --parallel` + +- Run tests with mutations: + +`pest --mutate`