feat: add Playwright E2E testing framework

Add @playwright/test, playwright.config.ts, e2e/ smoke test,
and e2e CI job (Chromium-only) that gates build-and-push.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
Stockboy Steve
2026-03-30 18:47:55 +00:00
parent 714b7f9ab4
commit e546e2077b
3 changed files with 28 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('app loads', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/CartSnitch/);
});