File tree Expand file tree Collapse file tree
packages/react-ui/components/ComboBox/__tests__ Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ describe('ComboBox', () => {
144144 expect ( onValueChange ) . toHaveBeenCalledTimes ( 1 ) ;
145145 } ) ;
146146
147- it ( 'not selects item on enter when search is empty' , async ( ) => {
147+ it ( 'not auto selecting an item on entry when the search is empty' , async ( ) => {
148148 const items = [ 'Item 1' , 'Item 2' , 'Item 3' ] ;
149149 const onValueChange = jest . fn ( ) ;
150150 render (
@@ -165,7 +165,7 @@ describe('ComboBox', () => {
165165 expect ( onValueChange ) . not . toHaveBeenCalled ( ) ;
166166 } ) ;
167167
168- it ( 'selects first item on enter when search find multiple items' , async ( ) => {
168+ it ( 'selects the first item when search found multiple items' , async ( ) => {
169169 const items = [ 'Item 1' , 'Item 2' , 'Item 3' ] ;
170170 const onValueChange = jest . fn ( ) ;
171171 render (
You can’t perform that action at this time.
0 commit comments