import { test, expect } from '@playwright/test';

test.describe('Project Navigation', () => {
    test('should navigate to project list', async ({ page }) => {
        // Navigate to the project list page
        await page.goto('/projectmanagement/project');

        // Wait for page to load and verify we're on projects page
        // The page might show "No projects" or a list of projects
        await expect(page).toHaveURL(/project/);

        // Check that we can see some project-related content
        // This is a basic smoke test to ensure the page loads
        await expect(page.locator('body')).toBeVisible();
    });
});
