testing
Installation
SKILL.md
Testing Skill
Guidance for testing Laravel apps with Pest, Nuxt/Vue apps with Vitest, and E2E with Playwright.
Quick Start
// Pest - Laravel
test('user can view profile', function () {
$user = User::factory()->create();
actingAs($user)
->get(route('users.show', $user))
->assertOk()
->assertSee($user->name);
});