Update all test files to use correct enum values: - AgentPanel, AgentStatusIndicator tests - ProjectHeader, StatusBadge tests - IssueSummary, IssueTable tests - StatusBadge, StatusWorkflow tests (issues) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
/**
|
|
* StatusBadge Component Tests
|
|
*/
|
|
|
|
import { render, screen } from '@testing-library/react';
|
|
import { StatusBadge } from '@/features/issues/components/StatusBadge';
|
|
import type { IssueStatus } from '@/features/issues/types';
|
|
|
|
const statusLabels: Record<IssueStatus, string> = {
|
|
open: 'Open',
|
|
in_progress: 'In Progress',
|
|
in_review: 'In Review',
|
|
blocked: 'Blocked',
|
|
closed: 'Closed',
|
|
};
|
|
|
|
describe('StatusBadge', () => {
|
|
const statuses: IssueStatus[] = ['open', 'in_progress', 'in_review', 'blocked', 'closed'];
|
|
|
|
it.each(statuses)('renders %s status correctly', (status) => {
|
|
render(<StatusBadge status={status} />);
|
|
|
|
// Check that the status text is present - use getAllByText since we have both visible and sr-only
|
|
const elements = screen.getAllByText(statusLabels[status]);
|
|
expect(elements.length).toBeGreaterThanOrEqual(1);
|
|
});
|
|
|
|
it('hides label when showLabel is false', () => {
|
|
render(<StatusBadge status="open" showLabel={false} />);
|
|
|
|
// The sr-only text should still be present
|
|
expect(screen.getByText('Open')).toHaveClass('sr-only');
|
|
});
|
|
|
|
it('applies custom className', () => {
|
|
const { container } = render(<StatusBadge status="open" className="custom-class" />);
|
|
|
|
const wrapper = container.firstChild;
|
|
expect(wrapper).toHaveClass('custom-class');
|
|
});
|
|
|
|
it('renders with accessible label', () => {
|
|
render(<StatusBadge status="open" showLabel={false} />);
|
|
|
|
// Should have sr-only text for screen readers
|
|
expect(screen.getByText('Open')).toBeInTheDocument();
|
|
});
|
|
});
|