aboutsummaryrefslogtreecommitdiffstats
path: root/.ddev/commands/web/phpunit
blob: 1a75bc743ac70eb5e83c5986276df7da77dd887d (plain) (blame)
1
2
3
4
5
6
7
#!/usr/bin/env bash

## Description: Run phpunit in the ddev environment
## Usage: phpunit
## Example: ddev phpunit

XDEBUG_MODE=coverage vendor/bin/phpunit -c tests/phpunit.xml --coverage-html=tests/results/coverage "$@"