8 lines
226 B
Plaintext
8 lines
226 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
## Description: Run PHPUnit tests inside the web container.
|
||
|
## Usage: phpunit
|
||
|
## Example: "ddev phpunit" or with additional arguments such as "ddev phpunit --testdox"
|
||
|
|
||
|
../vendor/bin/phpunit --config .. $*
|