mirror of
https://codeberg.org/icewind/haze.git
synced 2026-06-03 17:14:08 +02:00
7 lines
157 B
Text
Executable file
7 lines
157 B
Text
Executable file
#!/bin/nu
|
|
|
|
def main [...rest] {
|
|
cd $env.WEBROOT
|
|
|
|
XDEBUG_SESSION=haze phpunit --configuration $"($env.WEBROOT)/tests/phpunit-autotest.xml" ...$rest
|
|
}
|