`composer` Pest test magic for Laravel apps

Automated Testing

Composer is quite a Flexible utility. The composer.json file has a script section, and you can basically have anything in there that you need to frequently access.

One of my favourites is this one:

"scripts": {
    ...
    "test": "vendor/bin/pest --parallel",
    ...
  }
lang-json

Magic, isn't it!