test(frontend): update tests for type changes

Update all test files to use correct enum values:
- AgentPanel, AgentStatusIndicator tests
- ProjectHeader, StatusBadge tests
- IssueSummary, IssueTable tests
- StatusBadge, StatusWorkflow tests (issues)
This commit is contained in:
2025-12-31 12:48:11 +01:00
parent 3264fc0206
commit 56f26e0357
8 changed files with 32 additions and 48 deletions

View File

@@ -22,7 +22,6 @@ describe('StatusWorkflow', () => {
expect(screen.getByText('In Progress')).toBeInTheDocument();
expect(screen.getByText('In Review')).toBeInTheDocument();
expect(screen.getByText('Blocked')).toBeInTheDocument();
expect(screen.getByText('Done')).toBeInTheDocument();
expect(screen.getByText('Closed')).toBeInTheDocument();
});