logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Pest Tests - Run PHP Tests Simply | Online Free DevTools by Hexmos

Run PHP tests simply with Pest, a delightful PHP Testing Framework. Effortlessly execute tests, manage groups, and generate coverage reports. Free online tool, no registration required.

pest

A PHP testing framework with a focus on simplicity. More information: https://pestphp.com/docs/cli-api-reference.

  • Initialize a standard Pest configuration in the current directory:

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:

pest --coverage

  • 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

See Also