webapp-testing

Installation
SKILL.md

Web App Testing with Playwright

Setup

npm init playwright@latest

Basic Test Structure

import { test, expect } from '@playwright/test';

test('homepage has title', async ({ page }) => {
  await page.goto('http://localhost:3000');
  await expect(page).toHaveTitle(/My App/);
});
Installs
1
First Seen
Mar 6, 2026
webapp-testing — moodmnky-llc/mood-mnky-command