add playwright test setup

This commit is contained in:
Zhi
2026-03-13 01:19:27 +00:00
parent 69d1eb8aff
commit de9b0cd5d0
4 changed files with 51 additions and 0 deletions

6
tests/example.spec.ts Normal file
View File

@@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('has title', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/HarborForge/);
});