mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-29 03:09:12 +08:00
ffed3a59d0
This reverts commit6ed9a57e33, reversing changes made to2728e60ca4.
31 lines
810 B
XML
31 lines
810 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Tests">
|
|
<directory suffix=".php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<logging>
|
|
<junit outputFile="build/report.junit.xml"/>
|
|
</logging>
|
|
|
|
<php>
|
|
<env name="APP_ENV" value="self-testing"/>
|
|
<env name="APP_KEY" value="base64:yk+bUVuZa1p86Dqjk9OjVK2R1pm6XHxC6xEKFq8utH0="/>
|
|
<env name="DB_CONNECTION" value="testing"/>
|
|
</php>
|
|
</phpunit>
|