Skip to content

Commit 9f71904

Browse files
committed
minor #2286 [React] Update phpunit.xml.dist (smnandre)
This PR was merged into the 2.x branch. Discussion ---------- [React] Update phpunit.xml.dist (minor) Commits ------- 7baea71 Update React phpunit.xml.dist
2 parents 02737a4 + 7baea71 commit 9f71904

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/React/phpunit.xml.dist

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
32
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
43
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
6-
backupGlobals="false"
4+
xsi:noNamespaceSchemaLocation="vendor/bin/.phpunit/phpunit.xsd"
75
colors="true"
86
bootstrap="vendor/autoload.php"
97
failOnRisky="true"
108
failOnWarning="true">
9+
10+
<coverage processUncoveredFiles="true">
11+
<include>
12+
<directory suffix=".php">./src</directory>
13+
</include>
14+
</coverage>
15+
1116
<php>
1217
<ini name="error_reporting" value="-1" />
1318
<ini name="intl.default_locale" value="en" />
@@ -23,9 +28,4 @@
2328
</testsuite>
2429
</testsuites>
2530

26-
<filter>
27-
<whitelist>
28-
<directory>./src</directory>
29-
</whitelist>
30-
</filter>
3131
</phpunit>

0 commit comments

Comments
 (0)