Skip to content

Commit

Permalink
Add logging
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed Sep 4, 2024
1 parent 079cbe6 commit 5cc36d7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ describe("FitBoundsService", () => {
const spy = jasmine.createSpy();
mapService.map.fitBounds = spy;
await service.fitBounds({ northEast: { lat: 1, lng: 1}, southWest: { lat: 2, lng: 2}});
console.log(spy.calls.all()[0].args[1]);
expect(spy.calls.all()[0].args[1].padding.left).toBe(400);
}));

Expand Down

0 comments on commit 5cc36d7

Please sign in to comment.