From e731527104278b3d3b3fa6429718d5f094fa9271 Mon Sep 17 00:00:00 2001 From: Shokkstokk Date: Fri, 5 Jun 2026 01:26:51 +0000 Subject: [PATCH] fix: add data-testid to TextInput mock in EPG test --- frontend/src/components/forms/__tests__/EPG.test.jsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/forms/__tests__/EPG.test.jsx b/frontend/src/components/forms/__tests__/EPG.test.jsx index 0ad578ef..1e64a563 100644 --- a/frontend/src/components/forms/__tests__/EPG.test.jsx +++ b/frontend/src/components/forms/__tests__/EPG.test.jsx @@ -245,7 +245,14 @@ vi.mock('@mantine/core', async () => ({ Stack: ({ children, gap }) =>
{children}
, Text: ({ children, ...props }) => {children}, TextInput: ({ label, value, onChange, placeholder, ...props }) => ( - + ), }));