Set verbose flag on phpunit

This commit is contained in:
adlawson 2015-07-24 17:15:17 +01:00
parent 6733fb8c13
commit b14a232177
1 changed files with 4 additions and 4 deletions

View File

@ -43,10 +43,10 @@
"phpunit/phpunit": "^4.7" "phpunit/phpunit": "^4.7"
}, },
"scripts": { "scripts": {
"test": "vendor/bin/phpunit --colors=always", "test": "vendor/bin/phpunit -v --colors=always",
"test:acceptance": "vendor/bin/phpunit --colors=always --testsuite acceptance", "test:acceptance": "vendor/bin/phpunit -v --colors=always --testsuite acceptance",
"test:functional": "vendor/bin/phpunit --colors=always --testsuite functional", "test:functional": "vendor/bin/phpunit -v --colors=always --testsuite functional",
"test:unit": "vendor/bin/phpunit --colors=always --testsuite unit", "test:unit": "vendor/bin/phpunit -v --colors=always --testsuite unit",
"lint:fix": [ "lint:fix": [
"vendor/bin/php-cs-fixer fix src --level=psr2", "vendor/bin/php-cs-fixer fix src --level=psr2",
"vendor/bin/php-cs-fixer fix test --level=psr2" "vendor/bin/php-cs-fixer fix test --level=psr2"