diff --git a/frontend/src/components/forms/__tests__/EPG.test.jsx b/frontend/src/components/forms/__tests__/EPG.test.jsx
index 31f5834d..ce004431 100644
--- a/frontend/src/components/forms/__tests__/EPG.test.jsx
+++ b/frontend/src/components/forms/__tests__/EPG.test.jsx
@@ -184,6 +184,32 @@ vi.mock('@mantine/core', async () => ({
{error && {error}}
),
+ Alert: ({ children, title, color, icon }) => (
+
+ {title &&
{title}
}
+ {children}
+
+ ),
+ Select: ({ label, value, onChange, data, placeholder }) => (
+
+ ),
+ Loader: ({ size }) => ,
+ Badge: ({ children, color }) => {children},
+ ScrollArea: ({ children }) => {children}
,
+ Table: ({ children }) => ,
+ Tooltip: ({ children }) => {children}
,
}));
// ── Imports after mocks ────────────────────────────────────────────────────────