Files
next-preview-uat-js/tests/home.spec.ts
2026-08-26 13:09:21 +01:00

7 lines
198 B
TypeScript

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