it('should handle navigation event with direction right and an invalid key', () => {
      const mouseEvent: MouseEvent = new MouseEvent('click', {
        button: -2 // invalid button
      });
      const result: number = comp.handleNavigationEvent(DIRECTION_RIGHT, mouseEvent);