it('should unsubscribe from events', () => {
        spyOn(component.sideNavSubscription, 'unsubscribe');
        fixture.destroy();
        expect(component.sideNavSubscription.unsubscribe).toHaveBeenCalled();
      });