it('should get storage', () => {
    spyOn(instance.storage, 'get').and.callThrough();
    instance.getGeofenceData();
    expect(instance.storage.get).toHaveBeenCalled();
  });