-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
22 lines (22 loc) · 850 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Feature">
<directory suffix="Test.php">tests/Feature</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">tests/Integration</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_KEY" value="base64:Ukd/g56Lu0RTqKsuQiBFrwJkbQM4J36+TBEA89ZolW4=" />
<env name="DB_CONNECTION" value="testing" />
<env name="QUEUE_CONNECTION" value="database" />
<env name="LOG_CHANNEL" value="null" />
<env name="TELESCOPE_MONITOR_LOG_CHANNEL" value="single" />
</php>
</phpunit>