Skip to content

Commit 2dd40df

Browse files
Backport the phpunit fixes
1 parent 3a2cfbc commit 2dd40df

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

phpunit.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,15 @@
1010
stopOnFailure="false">
1111
<testsuites>
1212
<testsuite name="Application Test Suite">
13-
<directory>./tests/</directory>
13+
<directory suffix="Test.php">./tests</directory>
1414
</testsuite>
1515
</testsuites>
1616
<filter>
17-
<whitelist>
18-
<directory suffix=".php">app/</directory>
17+
<whitelist processUncoveredFilesFromWhitelist="true">
18+
<directory suffix=".php">./app</directory>
19+
<exclude>
20+
<file>./app/Http/routes.php</file>
21+
</exclude>
1922
</whitelist>
2023
</filter>
2124
<php>

0 commit comments

Comments
 (0)