next preview UAT fixture (javascript)

This commit is contained in:
Jogeswar Reddy Kupuli
2026-08-26 13:09:21 +01:00
commit e1550afa38
7 changed files with 468 additions and 0 deletions

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

@@ -0,0 +1,6 @@
import { test, expect } from '@playwright/test';
test('home page shows the marker', async ({ page }) => {
await page.goto('/');
await expect(page.getByText('UAT_MARKER_JS')).toBeVisible();
});