mirror of
https://github.com/jlengrand/Maestro.git
synced 2026-03-10 08:31:19 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user