What problem does it solve? Writing and maintaining PHP tests requires knowing Pest 4 conventions, assertion patterns, datasets, mocking, and browser testing APIs, which developers often get wrong or skip entirely. ## Core Features & Use Cases - Test Creation: Generates unit, feature, and browser tests using Pest 4 syntax with proper artisan commands and directory conventions. - Assertion & Dataset Patterns: Enforces specific assertions like assertSuccessful() instead of assertStatus(200) and uses datasets for repetitive validation tests. - Browser & Smoke Testing: Writes real-browser tests with page interaction, JavaScript error checks, multi-device viewports, and visual regression. - Use Case: When adding a new API endpoint, ask the AI to write a Pest feature test and it will generate the test file, use proper response assertions, mock dependencies, and run it with a filtered artisan command. ## Quick Start Ask the AI to write a Pest test for your new registration endpoint and run it with a filtered artisan test command.