it('should listen to geofence events', () => {
    spyOn(instance.events, 'subscribe').and.callThrough();
    instance.listenToGeofenceEvents();
    expect(instance.events.subscribe).toHaveBeenCalled();
  });