laravel:tdd-with-pest
Installation
SKILL.md
Laravel TDD (Pest/PHPUnit)
Write the test first. Watch it fail. Write minimal code to pass. Keep tests fast and realistic.
Test Runner
# Sail
sail artisan test --parallel
# Non-Sail
php artisan test --parallel
Prefer Pest (default in new Laravel apps). PHPUnit is fine if your project uses it.