pest-plugin-watch
pest-plugin-watch copied to clipboard
The Pest Plugin Watch
## Summary The Pest Watch Plugin removes colorful output from Pest. | ✅ Expected behavior | ❌ Actual behavior | | :--- | :--- | | 1. Install Pest and...
Is there a way to run the `clear` command before the new output is being sent? If not, can I run a function before the watcher sends the new data?...
Fixing two issues that are addressed here https://github.com/pestphp/pest/issues/789: - `--watch` does not show colors. - When `fswatch` is not installed, the condition inside `checkFswatchIsAvailable()` fails, therefore it runs the tests...
``` composer require pestphp/pest-plugin-watch --dev brew install fswatch Warning: fswatch 1.17.1 is already installed and up-to-date. To reinstall 1.17.1, run: brew reinstall fswatch ``` Runs once, then exists. Relevant from...
As the title says, is this a work in progress? :) Right now I'd love to migrate the company's projects however lack of automatic run is a big one holding...
# DRAFT: Replace `fswatch` What do you think about this? How about replacing fswatch with spatie/file-system-watcher? I know from discord that this has been a topic for quite some time....
Strange a simple `php artisan test` is working but `php artisan test --watch` not and getting the following error: ``` php artisan test --watch PHPUnit 9.5.2 by Sebastian Bergmann and...