Implement property directory search

This commit is contained in:
2026-05-26 11:59:22 +00:00
parent ab2f9677fa
commit bb80906d19
8 changed files with 621 additions and 86 deletions

View File

@@ -6,8 +6,9 @@ test.describe('homepage', () => {
await expect(page.getByRole('heading', { name: 'Holiday Property Booking' })).toBeVisible();
await expect(page.getByRole('navigation', { name: 'Primary' })).toBeVisible();
await expect(page.getByRole('link', { name: 'Explore featured stays' })).toHaveAttribute('href', '#browse');
await expect(page.getByRole('link', { name: 'Browse all properties' })).toHaveAttribute('href', '/properties');
await expect(page.getByRole('link', { name: 'Contact the team' })).toHaveAttribute('href', '/contact');
await expect(page.getByRole('link', { name: 'Properties' })).toHaveAttribute('href', '/properties');
});
test('shows the public content sections', async ({ page }) => {