fix: remove duplicate phpunit.xml that prevented tests from running

The tests/phpunit.xml was incomplete - it only configured helpers and
Libraries testsuites, while phpunit.xml.dist at root contains all tests.
PHPUnit was likely using the incomplete config, resulting in empty test
results.
This commit is contained in:
Ollama
2026-03-27 07:54:37 +00:00
committed by jekkos
parent cef103445e
commit 56670271d6

View File

@@ -1,18 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap = "../vendor/autoload.php"
backupGlobals = "false"
colors = "true"
processIsolation = "false"
stopOnFailure = "false">
<testsuites>
<testsuite name="Helpers">
<directory>helpers</directory>
</testsuite>
<testsuite name="Libraries">
<directory>Libraries</directory>
</testsuite>
</testsuites>
</phpunit>