nx/nx-dev/nx-dev-e2e/src/app.spec.ts
Benjamin Cabanes 5a305d41de
feat(nx-dev): add homepage updates (#20592)
Co-authored-by: Juri <juri.strumpflohner@gmail.com>
2023-12-08 14:40:42 -05:00

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