rules/web/testing.md
This file extends common/testing.md with web-specific testing content.
import { test, expect } from '@playwright/test';
test('landing hero loads', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});