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");
  });
Installs
2
GitHub Stars
21
First Seen
Feb 3, 2026
agentic-jumpstart-testing — webdevcody/agentic-jumpstart