agentic-jumpstart-testing
Installation
SKILL.md
Testing Patterns
Playwright E2E Testing
Test Structure
// tests/courses.spec.ts
import { test, expect } from "@playwright/test";
test.describe("Courses", () => {
test.beforeEach(async ({ page }) => {
// Setup before each test
await page.goto("/courses");
});