test(e2e): add Phase D/E/F specs covering new architecture (54 tests)

Phase D — Settings & Error Handling:
- D1: Settings panel 6-category tabs, search, active highlighting
- D2: Appearance settings (themes, fonts, cursor, scrollback)
- D3: Theme Editor (color pickers, groups, save/cancel)
- D4: Toast notifications, notification center bell/dropdown
- D5: Error states (no loadError warnings, status bar)

Phase E — Agents & Health:
- E1: ProjectBox tab bar (7+ tabs, PERSISTED-LAZY switching)
- E2: Agent session UI (prompt input, context meter, cost)
- E3: Provider configuration (panels, capabilities, toggles)
- E4: Status bar fleet state (counts, cost, attention queue)
- E5: Project health indicators (status dot, CWD, pressure, burn rate)
- E6: Metrics tab (fleet aggregates, health cards, Live/History)
- E7: Conflict detection (no false badges on fresh launch)
- E8: Audit log (manager-only tab, toolbar, entries)

Phase F — Search & LLM Quality:
- F1: Search overlay (Ctrl+Shift+F, input, empty state, close)
- F2: Context tab & anchors (visualization, budget scale)
- F3: SSH tab (connection list, add button)
- F4-F7: LLM-judged quality (settings completeness, theme editor,
  error messages, overall UI consistency)
This commit is contained in:
Hibryda 2026-03-18 03:20:37 +01:00
parent 6f247da514
commit 56971c3f27
7 changed files with 1541 additions and 0 deletions

View file

@ -50,6 +50,12 @@ export const config = {
resolve(projectRoot, 'tests/e2e/specs/phase-c-ui.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-c-tabs.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-c-llm.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-d-settings.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-d-errors.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-e-agents.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-e-health.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-f-search.test.ts'),
resolve(projectRoot, 'tests/e2e/specs/phase-f-llm.test.ts'),
],
// ── Capabilities ──