diff --git a/__tests__/MapComponent.test.js b/__tests__/MapComponent.test.js index 70cf3a087..ea9be1af6 100644 --- a/__tests__/MapComponent.test.js +++ b/__tests__/MapComponent.test.js @@ -1,15 +1,15 @@ // __tests__/MapComponent.test.js // Ein einfacher Testfall, der sicherstellt, dass die Addition korrekt ist -/* test("simple addition", () => { +test("simple addition", () => { const a = 1; const b = 2; const c = a + b; expect(c).toBe(3); // Überprüft, ob c gleich 3 ist -}); */ +}); -import L from "leaflet"; -import { checkOverlappingMarkers } from "../utils/mapUtils"; // Passe den Pfad entsprechend an +//import L from "leaflet"; +//import { checkOverlappingMarkers } from "../utils/mapUtils"; // Passe den Pfad entsprechend an /* describe("checkOverlappingMarkers", () => { let map;