You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-31 13:44:28 +03:00
Live location sharing: remove geoUri logs (#8465)
* remove geoUri logs Signed-off-by: Kerry Archibald <kerrya@element.io> * Update src/components/views/location/Map.tsx Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@ -101,7 +101,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', '123 Sesame Street');
|
||||
expect(logSpy).toHaveBeenCalledWith('Could not set map center');
|
||||
});
|
||||
|
||||
it('updates map center when centerGeoUri prop changes', () => {
|
||||
@ -133,7 +133,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', new Error('Invalid LngLat object: (41, NaN)'));
|
||||
expect(logSpy).toHaveBeenCalledWith('Invalid map bounds');
|
||||
});
|
||||
|
||||
it('updates map bounds when bounds prop changes', () => {
|
||||
|
Reference in New Issue
Block a user