| import { test, expect } from '@playwright/test'; | |
| test.describe('TenderHub Core Flows', () => { | |
| test('landing page loads and has expected elements', async ({ page }) => { | |
| await page.goto('/'); | |
| // Check for standard landing page elements. | |
| // If the landing page changes, update these assertions. | |
| await expect(page).toHaveTitle(/TenderHub/i); | |
| // Check if the dashboard console is still reachable (for dev check) | |
| await page.goto('/console'); | |
| await expect(page.locator('body')).toBeVisible(); | |
| }); | |
| }); | |