forked from outl1ne/nova-settings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.dusk.xml.dist
22 lines (22 loc) · 903 Bytes
/
phpunit.dusk.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="tests/bootstrap.php" colors="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Browser Test Suite">
<directory suffix="Test.php">./tests/Browser</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_URL" value="http://127.0.0.1:8085"/>
<env name="APP_ENV" value="testing"/>
<env name="APP_KEY" value="base64:+Yk3U4u5A5sSnN6kUr5b38I2LE/SgNxwov5XX5FvSW0="/>
<env name="APP_DEBUG" value="true"/>
<env name="DUSK_TIMEZONE" value="Europe/Tallinn"/>
<env name="DUSK_WIDTH" value="1920"/>
<env name="DUSK_HEIGHT" value="1080"/>
</php>
</phpunit>