7 lines
198 B
TypeScript
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();
|
|
});
|