@@ -18,7 +18,7 @@ describe('Select.Accessibility', () => {
18
18
it ( 'pass aria info to internal input' , ( ) => {
19
19
const MySelect = Select as any ;
20
20
const wrapper = mount ( < MySelect aria-label = "light" data-attr = "bamboo" useless = "2333" /> ) ;
21
- expect ( wrapper . find ( 'input' ) . props ( ) ) . toEqual (
21
+ expect ( wrapper . find ( '.rc-select-selection-search- input' ) . props ( ) ) . toEqual (
22
22
expect . objectContaining ( {
23
23
'aria-label' : 'light' ,
24
24
} ) ,
@@ -48,20 +48,20 @@ describe('Select.Accessibility', () => {
48
48
) ;
49
49
50
50
// First Match
51
- wrapper . find ( 'input' ) . simulate ( 'change' , { target : { value : 'b' } } ) ;
51
+ wrapper . find ( '.rc-select-selection-search- input' ) . simulate ( 'change' , { target : { value : 'b' } } ) ;
52
52
jest . runAllTimers ( ) ;
53
53
54
54
expectOpen ( wrapper ) ;
55
55
expect (
56
56
wrapper . find ( '.rc-select-item-option-active .rc-select-item-option-content' ) . text ( ) ,
57
57
) . toEqual ( 'Bamboo' ) ;
58
58
59
- wrapper . find ( 'input' ) . simulate ( 'keyDown' , { which : KeyCode . ENTER } ) ;
59
+ wrapper . find ( '.rc-select-selection-search- input' ) . simulate ( 'keyDown' , { which : KeyCode . ENTER } ) ;
60
60
expectOpen ( wrapper , false ) ;
61
61
62
62
// Next Match
63
- wrapper . find ( 'input' ) . simulate ( 'change' , { target : { value : '' } } ) ;
64
- wrapper . find ( 'input' ) . simulate ( 'change' , { target : { value : 'g' } } ) ;
63
+ wrapper . find ( '.rc-select-selection-search- input' ) . simulate ( 'change' , { target : { value : '' } } ) ;
64
+ wrapper . find ( '.rc-select-selection-search- input' ) . simulate ( 'change' , { target : { value : 'g' } } ) ;
65
65
jest . runAllTimers ( ) ;
66
66
67
67
expectOpen ( wrapper ) ;
0 commit comments