petecoop/pest-plugin-watch
最新稳定版本:0.1.0
Composer 安装命令:
composer require petecoop/pest-plugin-watch
包简介
A Pest plugin to watch your files and re-run tests on changes.
README 文档
README
A Pest plugin to watch files and restart Pest when they change.
This is a Pest Watch plugin that works with Pest v4 and differs from the official Pest Watch plugin which became unsupported. It's now built on the spatie/file-system-watcher package which uses the node package chokidar under the hood for efficient file watching.
Installation
You can install the package via composer:
composer require petecoop/pest-plugin-watch --dev
In your project, you should have the JavaScript package chokidar installed. You can install it via npm
npm install chokidar --save-dev
If you are using Bun, you can install it via:
bun a -d chokidar
The watcher will automatically use Bun if there is a bun.lock file in your project.
Usage
To start Pest in watch mode, run the following command:
pest --watch
This will restart Pest whenever a file in src, app or tests changes.
You can override the default paths by providing your own paths, for example inside your Pest.php file:
Petecoop\PestWatch\Plugin::directories(['src', 'tests', 'custom-dir']);
统计信息
- 总下载量: 22
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2025-11-10