forked from laravel/nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
26 lines (26 loc) · 1020 Bytes
/
phpunit.xml.dist
File metadata and controls
26 lines (26 loc) · 1020 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>src</directory>
</include>
</source>
<php>
<env name="APP_KEY" value="base64:uz4B1RtFO57QGzbZX1kRYX9hIRB50+QzqFeg9zbFJlY="/>
<env name="CACHE_STORE" value="array" />
<env name="DB_CONNECTION" value="sqlite" />
<env name="DB_DATABASE" value="tests/database.sqlite" />
<env name="MAIL_MAILER" value="array" />
<env name="QUEUE_CONNECTION" value="database" />
<env name="SQS_PREFIX" value="https://sqs.us-east-1.amazonaws.com/123456789" />
<env name="NIGHTWATCH_TOKEN" value="80fbcc70cec46a6e30d1e3b1b46260ba282c8a0923f8" />
</php>
</phpunit>