8 lines
271 B
TypeScript
8 lines
271 B
TypeScript
import { test, expect } from '@playwright/test';
|
|
|
|
test('should display the primary heading', async ({ page }) => {
|
|
await page.goto('/');
|
|
const heading = page.locator('[data-cy="primary-heading"]');
|
|
await expect(heading).toContainText('Smart MonoreposFast CI');
|
|
});
|