diff --git a/src/RootComponents/Root.test.tsx b/src/RootComponents/Root.test.tsx index a5861a5b4..3669ee8d4 100644 --- a/src/RootComponents/Root.test.tsx +++ b/src/RootComponents/Root.test.tsx @@ -88,19 +88,6 @@ describe("Root", () => { expect(mockUnsubscribe).toHaveBeenCalled(); }); - test("should call getState to initialize theme", () => { - render(); - - expect(mockThemeStore.getState).toHaveBeenCalledTimes(1); - }); - - test("should handle theme subscription properly", () => { - render(); - - expect(mockThemeStore.subscribe).toHaveBeenCalledTimes(1); - expect(mockThemeStore.getState).toHaveBeenCalled(); - }); - test("should render without errors", () => { expect(() => render()).not.toThrow(); });