Remove utest dependency from tests

This commit is contained in:
2025-10-30 18:43:12 -05:00
parent 5cdd5e3be0
commit 1cb31d719d
7 changed files with 42 additions and 42 deletions

View File

@@ -1,15 +1,15 @@
t() {
haxe -cp hank -lib utest -lib hscript hxml/$1.hxml --interp > test-output.txt
haxe -cp hank -lib hscript hxml/$1.hxml --interp > test-output.txt
$VISUAL test-output.txt
}
ta() {
haxe -cp hank -lib utest -lib hscript hxml/all-platforms.hxml > test-output.txt
haxe -cp hank -lib hscript hxml/all-platforms.hxml > test-output.txt
$VISUAL test-output.txt
}
tas() {
haxe -D stop_on_error -cp hank -lib utest -lib hscript hxml/all-platforms.hxml > test-output.txt
haxe -D stop_on_error -cp hank -lib hscript hxml/all-platforms.hxml > test-output.txt
$VISUAL test-output.txt
}