diff --git a/frontend/src/components/forms/__tests__/EPG.test.jsx b/frontend/src/components/forms/__tests__/EPG.test.jsx index 1121f865..b798bb4a 100644 --- a/frontend/src/components/forms/__tests__/EPG.test.jsx +++ b/frontend/src/components/forms/__tests__/EPG.test.jsx @@ -235,6 +235,17 @@ vi.mock('@mantine/core', async () => ({ {label} ), + UnstyledButton: ({ children, onClick, ...props }) => ( + + ), + Alert: ({ children, title, color, icon }) => ( +
{title}{children}
+ ), + Stack: ({ children, gap }) =>
{children}
, + Text: ({ children, ...props }) => {children}, + TextInput: ({ label, value, onChange, placeholder, ...props }) => ( + + ), })); // ── Imports after mocks ────────────────────────────────────────────────────────