mirror of
https://github.com/simshaun/recurr.git
synced 2025-01-16 15:38:46 +01:00
13 lines
261 B
PowerShell
13 lines
261 B
PowerShell
#$env:XDEBUG_MODE = "debug"
|
|
#$env:XDEBUG_SESSION = 1
|
|
|
|
# If no arguments, run all tests.
|
|
if (-not $args)
|
|
{
|
|
./vendor/bin/phpunit --stop-on-failure -c phpunit.xml.dist
|
|
}
|
|
else
|
|
{
|
|
./vendor/bin/phpunit --stop-on-failure -c phpunit.xml.dist --filter $args[0]
|
|
}
|