mirror of https://github.com/vector-im/riot-web
parent
837e27ed42
commit
9d68f2c4cc
|
@ -102,7 +102,7 @@ describe("<Map />", () => {
|
||||||
const logSpy = jest.spyOn(logger, "error").mockImplementation();
|
const logSpy = jest.spyOn(logger, "error").mockImplementation();
|
||||||
getComponent({ centerGeoUri: "123 Sesame Street" });
|
getComponent({ centerGeoUri: "123 Sesame Street" });
|
||||||
expect(mockMap.setCenter).not.toHaveBeenCalled();
|
expect(mockMap.setCenter).not.toHaveBeenCalled();
|
||||||
expect(logSpy).toHaveBeenCalledWith("Could not set map center");
|
expect(logSpy).toHaveBeenCalledWith("Could not set map center", expect.any(Error));
|
||||||
});
|
});
|
||||||
|
|
||||||
it("updates map center when centerGeoUri prop changes", () => {
|
it("updates map center when centerGeoUri prop changes", () => {
|
||||||
|
@ -136,7 +136,7 @@ describe("<Map />", () => {
|
||||||
const bounds = { north: "a", south: "b", east: 42, west: 41 };
|
const bounds = { north: "a", south: "b", east: 42, west: 41 };
|
||||||
getComponent({ bounds });
|
getComponent({ bounds });
|
||||||
expect(mockMap.fitBounds).not.toHaveBeenCalled();
|
expect(mockMap.fitBounds).not.toHaveBeenCalled();
|
||||||
expect(logSpy).toHaveBeenCalledWith("Invalid map bounds");
|
expect(logSpy).toHaveBeenCalledWith("Invalid map bounds", expect.any(Error));
|
||||||
});
|
});
|
||||||
|
|
||||||
it("updates map bounds when bounds prop changes", () => {
|
it("updates map bounds when bounds prop changes", () => {
|
||||||
|
|
Loading…
Reference in New Issue