Skip to content
This repository was archived by the owner on Mar 19, 2026. It is now read-only.

Commit 1f614de

Browse files
committed
🔧 Pass configuration validation
1 parent f494906 commit 1f614de

1 file changed

Lines changed: 23 additions & 8 deletions

File tree

phpunit.xml.dist

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,39 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5+
backupGlobals="false"
6+
backupStaticAttributes="false"
57
bootstrap="vendor/autoload.php"
68
colors="true"
9+
convertErrorsToExceptions="true"
10+
convertNoticesToExceptions="true"
11+
convertWarningsToExceptions="true"
12+
processIsolation="false"
13+
stopOnFailure="false"
14+
executionOrder="random"
15+
failOnWarning="true"
16+
failOnRisky="true"
17+
failOnEmptyTestSuite="true"
18+
beStrictAboutOutputDuringTests="true"
719
verbose="true"
820
>
921
<testsuites>
10-
<testsuite name="codebar Test Suite">
22+
<testsuite name="Laravel Prerender Test Suite">
1123
<directory>tests</directory>
1224
</testsuite>
1325
</testsuites>
14-
<filter>
15-
<whitelist processUncoveredFilesFromWhitelist="true">
16-
<directory suffix=".php">./src</directory>
17-
</whitelist>
18-
</filter>
19-
<coverage processUncoveredFiles="true">
26+
<coverage>
2027
<include>
2128
<directory suffix=".php">./src</directory>
2229
</include>
30+
<report>
31+
<html outputDirectory="build/coverage"/>
32+
<text outputFile="build/coverage.txt"/>
33+
<clover outputFile="build/logs/clover.xml"/>
34+
</report>
2335
</coverage>
36+
<logging>
37+
<junit outputFile="build/report.junit.xml"/>
38+
</logging>
2439
</phpunit>

0 commit comments

Comments
 (0)