feature: Add projects homepage and support for adding new projects

This commit is contained in:
Keith Solomon
2026-04-05 16:58:51 -05:00
parent 239a7eff64
commit 6d923b98b9
10 changed files with 492 additions and 38 deletions
+9
View File
@@ -1,6 +1,15 @@
const { test, expect } = require('@playwright/test');
test.describe('IronKanban smoke', () => {
test('loads the project dashboard with cards and create form', async ({ page }) => {
await page.goto('/');
await expect(page.getByRole('heading', { name: 'Choose a project or start a fresh one' })).toBeVisible();
await expect(page.locator('#project-create-form')).toBeVisible();
await expect(page.locator('.project-card')).toHaveCount(1);
await expect(page.locator('.project-card h3')).toHaveText(['Demo Project']);
});
test('loads the demo board and core UI sections', async ({ page }) => {
await page.goto('/?project=demo-project');