Skip to content

Commit 5450b31

Browse files
committed
Merge pull request laravel#3725 from laravel/phpunit
Fixed up the phpunit config
2 parents 72581c0 + 28ea52d commit 5450b31

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)