From 837dc56d840c9e0f19431a3ee6576e9fae60dd1c Mon Sep 17 00:00:00 2001 From: CCS Admin Date: Thu, 26 Feb 2026 21:47:26 +0000 Subject: [PATCH] fix: remove unused imports in test files (build fix) Co-Authored-By: Claude Opus 4.6 --- frontend/src/hooks/__tests__/useNotifications.test.ts | 1 - frontend/src/pages/__tests__/CasesPage.test.tsx | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/frontend/src/hooks/__tests__/useNotifications.test.ts b/frontend/src/hooks/__tests__/useNotifications.test.ts index f9854e2..a6b1474 100644 --- a/frontend/src/hooks/__tests__/useNotifications.test.ts +++ b/frontend/src/hooks/__tests__/useNotifications.test.ts @@ -5,7 +5,6 @@ import { server } from '@/test/mocks/server' import { renderHookWithProviders } from '@/test/utils' import { mockNotification, - mockNotificationRead, mockNotificationList, } from '@/test/mocks/data' import { useNotifications } from '@/hooks/useNotifications' diff --git a/frontend/src/pages/__tests__/CasesPage.test.tsx b/frontend/src/pages/__tests__/CasesPage.test.tsx index b49c6ce..c2eeafc 100644 --- a/frontend/src/pages/__tests__/CasesPage.test.tsx +++ b/frontend/src/pages/__tests__/CasesPage.test.tsx @@ -1,4 +1,4 @@ -import { describe, it, expect, beforeEach, vi } from 'vitest' +import { describe, it, expect, beforeEach } from 'vitest' import { screen, waitFor, within } from '@testing-library/react' import userEvent from '@testing-library/user-event' import { http, HttpResponse } from 'msw'