laravel-shift / blueprint

A code generation tool for Laravel developers.
MIT License
2.82k stars 270 forks source link

Make Pest the default testing option #692

Closed bertheyman closed 2 months ago

bertheyman commented 2 months ago

Since Laravel 11, Pest is the default testing option but the developer can opt to use PHPUnit. Would it make sense to do the same in Blueprint?

If so, this PR makes Pest the default testing option.

jasonmccreary commented 2 months ago

To my knowledge, Pest is not the default. Maybe you created a new app with the option for Pest.

Either way, it's easy to swap out in Blueprint's config.

bertheyman commented 2 months ago

I based myself on this article (new defaults: Pest), the Tweet from Taylor and Pest being shown first in the examples from the Laravel docs.

Reading more about it: there still seems to be a lot of debate, and while Pest is the option you get from the installer if you don't change anything, it is offered more like a choice than a strict default.

Either way, it's easy to swap out in Blueprint's config.

Fair point! The change is not that big indeed. Thanks for the feedback.