Skip to content

Commit

Permalink
More verbose errors in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tedivm committed Mar 5, 2023
1 parent d4a072b commit 552a46c
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache">
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
cacheDirectory=".phpunit.cache"
failOnWarning="true"
colors="true"
bootstrap="./tests/bootstrap.php"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerErrors="true">
<coverage>
<include>
<directory suffix=".php">./src/JShrink/</directory>
</include>
<report>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
<text outputFile="php://stdout" showUncoveredFiles="false" />
</report>
</coverage>
<testsuites>
Expand All @@ -19,5 +27,5 @@
<group>development</group>
</exclude>
</groups>
<logging/>
<logging />
</phpunit>

0 comments on commit 552a46c

Please sign in to comment.