mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-04 11:51:36 +02:00
Update tests
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
837e27ed42
commit
9d68f2c4cc
@ -102,7 +102,7 @@ describe("<Map />", () => {
|
||||
const logSpy = jest.spyOn(logger, "error").mockImplementation();
|
||||
getComponent({ centerGeoUri: "123 Sesame Street" });
|
||||
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", () => {
|
||||
@ -136,7 +136,7 @@ describe("<Map />", () => {
|
||||
const bounds = { north: "a", south: "b", east: 42, west: 41 };
|
||||
getComponent({ bounds });
|
||||
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", () => {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user