Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion apps/website/e2e/website.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ test('landing page renders hero headline', async ({ page }) => {

test('landing page renders differentiator section', async ({ page }) => {
await page.goto('/');
await expect(page.getByText('Built for Angular, not retrofitted.').first()).toBeVisible();
// Assert on the stable id, not the heading copy — landing-page text rewrites
// happen far more often than the section structure changes.
await expect(page.locator('#differentiator-heading')).toBeVisible();
});

test('landing page renders feature blocks (Stream/Render/Ship)', async ({ page }) => {
Expand Down
Loading