pestphp / pest

Pest is an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP.
https://pestphp.com
MIT License
9.06k stars 313 forks source link

Fix Laravel 11 TestCase.php stub #1163

Open Danger-Mkh opened 1 month ago

Danger-Mkh commented 1 month ago

What:

Description:

As Laravel 11 tests/TestCase.php it doesn't have use CreatesApplication; statement.

So in fresh Laravel install if you install Pest right after that, by default the tests/TestCase.php exists so it would recognized.

I manually removed the tests/TestCase.php so pest:install replaced the stubs, after running the php artisan test command i encouraged an error that shows use CreatesApplication; is not found.