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
7
Repository
plurigrid/asi
GitHub Stars
28
First Seen
Jan 29, 2026
webapp-testing — plurigrid/asi