// __tests__/MapComponent.test.js // Ein einfacher Testfall, der sicherstellt, dass die Addition korrekt ist test("simple addition", () => { const a = 1; const b = 2; const c = a + b; expect(c).toBe(3); // Überprüft, ob c gleich 3 ist });