1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/pest.md

25 lines
503 B
Markdown
Raw Normal View History

2020-11-06 11:07:31 +00:00
# pest
> A PHP testing framework with a focus on simplicity.
> More information: <https://pestphp.com>.
2022-06-27 12:23:12 +02:00
- Initialize a standard Pest configuration in the current directory:
2020-11-06 11:07:31 +00:00
`pest --init`
- Run tests in the current directory:
`pest`
- Run tests annotated with the given group:
`pest --group {{name}}`
- Run tests and print the coverage report to `stdout`:
2020-11-06 11:07:31 +00:00
`pest --coverage`
- Run tests with coverage and fail if the coverage is less than the minimum percentage:
`pest --coverage --min={{80}}`