What problem does it solve? Writing reliable Laravel tests requires consistent decisions about test layers, database strategies, fakes, and coverage targets, and this Skill provides a structured red-green-refactor workflow so tests are written before implementation with 80%+ coverage. ## Core Features & Use Cases - Red-Green-Refactor Workflow: Guides writing a failing test first, implementing the minimal change to pass, then refactoring while keeping tests green. - Test Layer Strategy: Distinguishes unit, feature, and integration tests with guidance on database traits like RefreshDatabase, DatabaseTransactions, and DatabaseMigrations. - Fakes and Isolation: Covers Bus, Queue, Mail, Notification, Event, and Http fakes plus Sanctum auth and Inertia assertions for deterministic tests. - Use Case: When adding a new API endpoint to a Laravel app, use this Skill to write a failing Pest feature test with factories and RefreshDatabase, then implement the controller until the test passes. ## Quick Start Write a failing Pest feature test for a new Laravel endpoint that creates a project, then implement the minimal code to make it pass.