From f52fd2ccd917026e1c964b7f404ae2ede41191bc Mon Sep 17 00:00:00 2001 From: ISA Date: Thu, 11 Jul 2024 10:57:20 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20jest-Test=20f=C3=BCr=20checkOverlapping?= =?UTF-8?q?Markers=20alles=20auskommentiert=20in=20MapComponent.test.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- __tests__/MapComponent.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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;