The file \ laravel \ cli \ tasks \ test \ stub.xml is used to create the PhpUnit configuration file for tests. (A new configuration file is generated and deleted each time you start the artisan testing task.) To disable colors, change the first line of stub.xml from <phpunit colors="true"
to <phpunit colors="false"
(for Laravel 3)
Update: For Laravel 4, the file is phpunit.xml
and is located in the root folder. The change has not yet been set colors="false"
.
source share