-
Notifications
You must be signed in to change notification settings - Fork 16
/
phpunit.xml.dist
34 lines (32 loc) · 1.07 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
executionOrder="random"
failOnWarning="true"
failOnRisky="true"
failOnEmptyTestSuite="true"
beStrictAboutOutputDuringTests="true"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<testsuites>
<testsuite name="Expo Test Suite">
<directory suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>network</group>
</exclude>
</groups>
<php>
<server name="APP_KEY" value="base64:AuEJX3yhL8cAmAEkNBl8PkiylImllP9+vn67WS/Y0A0="/>
<server name="DB_CONNECTION" value="sqlite"/>
<server name="DB_DATABASE" value=":memory:"/>
</php>
</phpunit>