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

Add missing --mutate option to the example provided for the --everything option #296

Merged
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
2 changes: 1 addition & 1 deletion mutation-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Run only the mutation with the given ID. Note, you need to provide the same opti
Generate mutations for all your project's classes, bypassing the `covers()` method. This option is very resource-intensive and should be used combined with the `--covered-only` option.

```bash
./vendor/bin/pest --everything --parallel --covered-only
./vendor/bin/pest --mutate --everything --parallel --covered-only
```

Ideally, you would also combine the `--parallel` option to speed up the process.
Expand Down