diff --git a/frontend/src/components/__tests__/VODModal.test.jsx b/frontend/src/components/__tests__/VODModal.test.jsx
index 7dc6ed40..2b6bd734 100644
--- a/frontend/src/components/__tests__/VODModal.test.jsx
+++ b/frontend/src/components/__tests__/VODModal.test.jsx
@@ -16,7 +16,9 @@ vi.mock('../../utils', () => ({
}));
vi.mock('../../utils/components/SeriesModalUtils.js', () => ({
- formatStreamLabel: vi.fn((provider) => `${provider.m3u_account.name} - Stream ${provider.stream_id}`),
+ formatStreamLabel: vi.fn(
+ (provider) => `${provider.m3u_account.name} - Stream ${provider.stream_id}`
+ ),
imdbUrl: vi.fn((id) => `https://www.imdb.com/title/${id}`),
tmdbUrl: vi.fn((id, type) => `https://www.themoviedb.org/${type}/${id}`),
formatDuration: vi.fn((secs) => `${Math.floor(secs / 60)} min`),
@@ -30,7 +32,9 @@ vi.mock('@mantine/core', async () => {
opened ? (
{title}
-
+
{children}
) : null,
@@ -56,8 +60,12 @@ vi.mock('@mantine/core', async () => {
{children}
),
Select: ({ data, value, onChange, placeholder, disabled }) => (
-