describe('onFocus', () => {
    it('should show tooltip', () => {
      const spy = spyOn(directive, 'showTooltip');
      directive.onFocus();
      expect(spy).toHaveBeenCalled();