forked from godaddy-wordpress/coblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
28 lines (28 loc) · 804 Bytes
/
phpunit.xml.dist
File metadata and controls
28 lines (28 loc) · 804 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
27
28
<phpunit
bootstrap=".dev/tests/phpunit/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="CoBlocks Test Suite">
<directory prefix="test-" suffix=".php">./.dev/tests/phpunit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./</directory>
<exclude>
<directory suffix=".php">./build</directory>
<directory suffix=".php">./node_modules</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./includes/Dependencies</directory>
</exclude>
</whitelist>
</filter>
<php>
<const name="PHPUNIT_PLUGIN_TEST" value="true"/>
</php>
</phpunit>