Skip to content

Commit 5590d6b

Browse files
committed
Install nicer phpunit output
1 parent bbdf79c commit 5590d6b

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"illuminate/database": "5.5.*"
1515
},
1616
"require-dev": {
17+
"codedungeon/phpunit-result-printer": "^0.4.4",
1718
"fzaninotto/faker": "~1.4",
1819
"laravel/laravel": "5.5.*",
1920
"mockery/mockery": "0.9.*",

phpunit.xml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
2+
<phpunit
3+
backupGlobals="false"
34
backupStaticAttributes="false"
5+
bootstrap="vendor/autoload.php"
46
colors="true"
57
convertErrorsToExceptions="true"
68
convertNoticesToExceptions="true"
79
convertWarningsToExceptions="true"
10+
printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"
811
processIsolation="false"
912
stopOnFailure="false"
1013
syntaxCheck="false"
11-
bootstrap="vendor/autoload.php"
1214
>
1315
<testsuites>
1416
<testsuite name="Feature">

0 commit comments

Comments
 (0)