I have a laravel project which has some unit tests written in them.
When i run those tests with php vendor/bin/phpunit
the results look like this:
Now when i run the tests with php artisan test
the results look like this:
Is it possible to run the phpunit command with the styling of the artisan test command?
I like the extra information about the duration of my tests but I need to run the phpunit command for some extra logging etc.