Level 104
Try using the --testdox option
Is there a way to capture the output of artisan test to a file?
I tried to specify in my phpunit.xml
<logging>
<text outputFile="phpunit.txt"/>
</logging>
But it only caught the following instead of the test names and results (by nuno) in detail.
............................................................... 63 / 100 ( 63%)
..................................... 100 / 100 (100%)
- PHP version: 8.1.9
- Laravel version: 8.83.23
- PHPUnit version: 9.5.23
This solved it.
<logging>
<testdoxText outputFile="phpunit.txt"/>
</logging>
Please or to participate in this conversation.