feat: jest-Test für checkOverlappingMarkers alles auskommentiert in MapComponent.test.js

This commit is contained in:
ISA
2024-07-11 10:57:20 +02:00
parent 2ac05a1936
commit f52fd2ccd9

View File

@@ -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;