@@ -76,7 +76,6 @@ var reactInputsValidationCss = {
7676 "select__dropdown-icon-container" : "react-inputs-validation__select__dropdown-icon-container___2ild-"
7777} ;
7878var TYPE = 'select' ;
79- /* istanbul ignore next */
8079
8180if ( ! String . prototype . startsWith ) {
8281 String . prototype . startsWith = function ( searchString , position ) {
@@ -359,8 +358,6 @@ var component = function component(_ref) {
359358 setMsg ( msg ) ;
360359 validationCallback && validationCallback ( err ) ;
361360 } , [ ] ) ;
362- /* istanbul ignore next because of https://github.com/airbnb/enzyme/issues/441 && https://github.com/airbnb/enzyme/blob/master/docs/future.md */
363-
364361 useEffect ( function ( ) {
365362 if ( $elWrapper === null ) {
366363 return ;
@@ -383,8 +380,6 @@ var component = function component(_ref) {
383380 $elWrapper . current . removeEventListener ( 'keydown' , onKeyDown ) ;
384381 } ;
385382 } , [ ] ) ;
386- /* istanbul ignore next because of https://github.com/airbnb/enzyme/issues/441 && https://github.com/airbnb/enzyme/blob/master/docs/future.md */
387-
388383 var pageClick = useCallback ( function ( e ) {
389384 if ( $elWrapper === null || $elWrapper . current . contains ( e . target ) ) {
390385 return ;
@@ -397,14 +392,10 @@ var component = function component(_ref) {
397392
398393 setShow ( false ) ;
399394 } , [ ] ) ;
400- /* istanbul ignore next because of https://github.com/airbnb/enzyme/issues/441 && https://github.com/airbnb/enzyme/blob/master/docs/future.md */
401-
402395 var resetCurrentFocus = useCallback ( function ( ) {
403396 globalVariableCurrentFocus = getIndex ( optionList , internalValue ) ;
404397 scroll ( ) ;
405398 } , [ internalValue ] ) ;
406- /* istanbul ignore next because of https://github.com/airbnb/enzyme/issues/441 && https://github.com/airbnb/enzyme/blob/master/docs/future.md */
407-
408399 var setTimeoutTyping = useCallback ( function ( ) {
409400 if ( globalVariableTypingTimeout ) {
410401 clearTimeout ( globalVariableTypingTimeout ) ;
@@ -414,8 +405,6 @@ var component = function component(_ref) {
414405 setKeycodeList ( [ ] ) ;
415406 } , 250 ) ;
416407 } , [ ] ) ;
417- /* istanbul ignore next because of https://github.com/airbnb/enzyme/issues/441 && https://github.com/airbnb/enzyme/blob/master/docs/future.md */
418-
419408 var scroll = useCallback ( function ( ) {
420409 var direction = arguments . length > 0 && arguments [ 0 ] !== undefined ? arguments [ 0 ] : undefined ;
421410
@@ -488,7 +477,6 @@ var component = function component(_ref) {
488477 if ( globalVariableCurrentFocus >= $itemsRef . length ) globalVariableCurrentFocus = 0 ;
489478 if ( globalVariableCurrentFocus < 0 ) globalVariableCurrentFocus = $itemsRef . length - 1 ;
490479 var $node = $itemsRef [ globalVariableCurrentFocus ] ;
491- /* istanbul ignore next because it won't happen */
492480
493481 if ( ! $node ) {
494482 return ;
@@ -499,7 +487,6 @@ var component = function component(_ref) {
499487 var removeActive = useCallback ( function ( ) {
500488 for ( var _i2 = 0 ; _i2 < $itemsRef . length ; _i2 += 1 ) {
501489 var $node = $itemsRef [ _i2 ] ;
502- /* istanbul ignore next because it won't happen */
503490
504491 if ( ! $node ) {
505492 break ;
@@ -510,8 +497,6 @@ var component = function component(_ref) {
510497 }
511498 }
512499 } , [ ] ) ;
513- /* istanbul ignore next because of https://github.com/airbnb/enzyme/issues/441 && https://github.com/airbnb/enzyme/blob/master/docs/future.md */
514-
515500 var onKeyDown = useCallback ( function ( e ) {
516501 setIsTyping ( true ) ;
517502
0 commit comments