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(); });