laravel-websockets/phpunit.xml

27 lines
778 B
XML
Raw Normal View History

2018-11-20 08:54:06 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
2020-09-10 19:59:26 +00:00
<testsuite name="Test Suite">
2018-11-20 08:54:06 +00:00
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
2018-12-03 12:33:00 +00:00
<php>
2020-09-10 19:59:26 +00:00
<server name="APP_DEBUG" value="1" />
<server name="APP_ENV" value="testing" />
2018-12-03 12:33:00 +00:00
</php>
2018-11-20 08:54:06 +00:00
</phpunit>