-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.dusk.xml
executable file
·40 lines (38 loc) · 1.58 KB
/
phpunit.dusk.xml
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
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true">
<testsuites>
<testsuite name="MicroweberCoreTests">
<directory suffix="Test.php">./tests/Browser</directory>
<exclude>./tests/Browser/Multilanguage</exclude>
<exclude>./tests/Browser/ShopTests</exclude>
<exclude>./tests/Browser/SlowTests</exclude>
</testsuite>
<testsuite name="MicroweberShopTests">
<directory suffix="Test.php">./tests/Browser/ShopTests</directory>
</testsuite>
<testsuite name="MicroweberMultilanguageTests">
<directory suffix="Test.php">./tests/Browser/Multilanguage</directory>
</testsuite>
<testsuite name="MicroweberTemplatesTests">
<directory>./userfiles/templates/*/tests/Browser</directory>
<directory>./userfiles/templates/*/src/tests/Browser</directory>
</testsuite>
<testsuite name="MicroweberSlowTests">
<directory>./tests/Browser/SlowTests</directory>
</testsuite>
</testsuites>
<php>
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
<env name="APP_ENV" value="testing" force="true"/>
<server name="APP_ENV" value="testing"/>
</php>
</phpunit>