What problem does it solve? Writing reliable Laravel tests requires choosing the right framework, database strategy, and faking approach, and this Skill provides a structured TDD workflow so tests are consistent, isolated, and maintainable. ## Core Features & Use Cases - Red-Green-Refactor Workflow: Applies the TDD cycle across unit, feature, and integration test layers with guidance on when to use each. - Database Testing Strategies: Covers RefreshDatabase, DatabaseTransactions, and DatabaseMigrations with clear selection criteria for each. - Fakes and Isolation: Demonstrates Bus, Queue, Mail, Notification, Event, and Http fakes plus Sanctum auth and Inertia assertions. - Use Case: When adding a new API endpoint to a Laravel app, use this Skill to write a failing Pest feature test first, implement the minimal controller logic, and verify with factories and assertDatabaseHas. ## Quick Start Write a failing Pest feature test for a new Laravel API endpoint that creates a project, then implement the minimal code to make it pass.