@@ -75,14 +75,14 @@ describe('Typeahead demo page test suite', () => {
75
75
typeahead . isElementVisible ( asyncData , typeahead . cardHeader ) ;
76
76
typeahead . isPreviewExist ( asyncData , formTemplate ) ;
77
77
typeahead . isElementVisible ( asyncData , typeahead . inputSelector ) ;
78
- typeahead . isInputHaveAttrs ( asyncData , [ { attr : 'placeholder' , value : 'Locations loaded with timeout ' } ] ) ;
78
+ typeahead . isInputHaveAttrs ( asyncData , [ { attr : 'placeholder' , value : 'Locations loaded via observable ' } ] ) ;
79
79
} ) ;
80
80
81
- it ( 'when user starts to type a name of a State a drop-down with matches is shown, only 7 matches are shown' ,
81
+ it ( 'when user starts to type a name of a State a drop-down with matches is shown, only 20 matches are shown' ,
82
82
( ) => {
83
83
typeahead . clearInputAndSendKeys ( asyncData , 'a' ) ;
84
84
typeahead . isElementVisible ( asyncData , typeahead . activeDropdown ) ;
85
- typeahead . isDropdownHasNItems ( typeahead . dropdownBtn , 7 ) ;
85
+ typeahead . isDropdownHasNItems ( typeahead . dropdownBtn , 20 ) ;
86
86
} ) ;
87
87
88
88
it ( 'when user clicks on any item in typeahead drop-down, then typeahead container auto-fills with a selected State' ,
@@ -436,7 +436,7 @@ describe('Typeahead demo page test suite', () => {
436
436
typeahead . isElementVisible ( scrollable , typeahead . inputSelector ) ;
437
437
} ) ;
438
438
439
- it . only ( `when there are any matches then a drop-down with a list of States matches is shown. user is able to scroll
439
+ it ( `when there are any matches then a drop-down with a list of States matches is shown. user is able to scroll
440
440
down/up to see the matches list` , ( ) => {
441
441
typeahead . clearInputAndSendKeys ( scrollable , textToInput ) ;
442
442
typeahead . isElementVisible ( scrollable , typeahead . activeDropdown ) ;
0 commit comments