23 lines
810 B
XML
Executable File
23 lines
810 B
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Browser Test Suite">
|
|
<directory suffix="Test.php">./tests/Browser</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<php>
|
|
<env name="APP_URL" value="http://127.0.0.1:8085"/>
|
|
<env name="APP_KEY" value="base64:la8jDWcqBHfGO6PR+OA9FAZqdi0XQKuhnzqc5tUATZs="/>
|
|
<env name="APP_ENV" value="testing"/>
|
|
</php>
|
|
</phpunit>
|