nx/nx-dev/nx-dev-e2e/src/app.spec.ts

8 lines
282 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, FastExtensibleBuild System');
});