What problem does it solve? Writing comprehensive Laravel tests requires knowing dozens of assertion APIs, mocking strategies, and Pest/PHPUnit conventions, and mistakes lead to flaky, slow, or incomplete test suites. ## Core Features & Use Cases - Full Test Coverage Guidance: Covers feature tests (HTTP, JSON APIs, authentication), unit tests (services, policies, rules), and Pest architecture tests enforcing code structure. - Mocking & Faking References: Detailed patterns for Mail, Queue, Event, Notification, Storage, Bus fakes, Http::fake for external APIs, and time travel helpers. - Ready-to-Use Templates: Provides FeatureTest, UnitTest, ApiTest, ArchTest, and Pest configuration templates to scaffold test suites immediately. - Use Case: When adding a new REST endpoint to a Laravel 13 app, use this Skill to generate a complete API test with Sanctum authentication, JSON structure assertions, database checks, and validation error coverage. ## Quick Start Write a Pest feature test for my Laravel posts API endpoint including authentication, validation errors, and database assertions.