Add missing Info and Wand2 icon mocks to wizard integration tests

The AgentSelectionScreen now uses Info and Wand2 icons from lucide-react
(added for the inline wizard tip box). Update the test mock to include
these icons so tests don't fail with missing export errors.
This commit is contained in:
Pedram Amini
2026-02-04 13:51:19 -06:00
parent 9ce51a88f9
commit c3309e05ed

View File

@@ -106,6 +106,12 @@ vi.mock('lucide-react', () => ({
Brain: ({ className, style }: { className?: string; style?: React.CSSProperties }) => (
<svg data-testid="brain-icon" className={className} style={style} />
),
Info: ({ className, style }: { className?: string; style?: React.CSSProperties }) => (
<svg data-testid="info-icon" className={className} style={style} />
),
Wand2: ({ className, style }: { className?: string; style?: React.CSSProperties }) => (
<svg data-testid="wand-icon" className={className} style={style} />
),
}));
// Mock react-markdown