From 502e7e08f28a1866a550ad8972023392d55510be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henry=20Gr=C3=A6sberg?= Date: Thu, 17 Sep 2026 22:50:04 +0200 Subject: [PATCH] Fix siverts broken code --- tests/components/location-list.test.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/components/location-list.test.tsx b/tests/components/location-list.test.tsx index 3e1422c..354f015 100644 --- a/tests/components/location-list.test.tsx +++ b/tests/components/location-list.test.tsx @@ -34,7 +34,7 @@ describe("LocationList", () => { it("renders a loading message while city forecasts are loading", () => { mockUseGetWeatherForCities.mockReturnValue({ isLoading: true, results: [] }) - render() + render( undefined} />) expect(screen.getByText("Loading...")).toBeTruthy() }) @@ -50,7 +50,7 @@ describe("LocationList", () => { ], }) - render() + render( undefined} />) expect(screen.getByText("City")).toBeTruthy() expect(screen.getByText("Next 3 Days")).toBeTruthy()