Chokidar file watcher to auto-run Pest tests
When working with Pest tests, I usually use Chokidar file watcher to auto-run my test and have instant feedback after changing any code.
1chokidar "app/**/*.php" "tests/**/*.php" -c "pest --filter 'work in progress test'"
You can install Chokidar CLI via npm:
1npm install -g chokidar-cli