@@ -139,10 +139,10 @@ describe('igxGridEditingActions #grid ', () => {
139139 actionStrip = fixture . componentInstance . actionStrip ;
140140 grid = fixture . componentInstance . grid ;
141141 } ) ) ;
142- it ( 'should auto-show on mouse over of row.' , ( ) => {
142+ it ( 'should auto-show on mouse enter of row.' , ( ) => {
143143 const row = grid . getRowByIndex ( 0 ) ;
144144 const rowElem = row . nativeElement ;
145- UIInteractions . simulateMouseEvent ( 'mouseover ' , rowElem , 0 , 0 ) ;
145+ UIInteractions . simulateMouseEvent ( 'mouseenter ' , rowElem , 0 , 0 ) ;
146146 fixture . detectChanges ( ) ;
147147
148148 expect ( actionStrip . context ) . toBe ( row ) ;
@@ -171,18 +171,18 @@ describe('igxGridEditingActions #grid ', () => {
171171 hierarchicalGrid = fixture . componentInstance . hgrid ;
172172 } ) ) ;
173173
174- it ( 'should auto-show root actionStrip on mouse over of root row.' , ( ) => {
174+ it ( 'should auto-show root actionStrip on mouse enter of root row.' , ( ) => {
175175 const row = hierarchicalGrid . getRowByIndex ( 0 ) ;
176176 const rowElem = row . nativeElement ;
177- UIInteractions . simulateMouseEvent ( 'mouseover ' , rowElem , 0 , 0 ) ;
177+ UIInteractions . simulateMouseEvent ( 'mouseenter ' , rowElem , 0 , 0 ) ;
178178 fixture . detectChanges ( ) ;
179179
180180 expect ( actionStripRoot . context ) . toBe ( row ) ;
181181 expect ( actionStripRoot . hidden ) . toBeFalse ( ) ;
182182 expect ( actionStripChild . context ) . toBeUndefined ( ) ;
183183 } ) ;
184184
185- it ( 'should auto-show row island actionStrip on mouse over of child row.' , ( ) => {
185+ it ( 'should auto-show row island actionStrip on mouse enter of child row.' , ( ) => {
186186 const row = hierarchicalGrid . getRowByIndex ( 0 ) as IgxHierarchicalRowComponent ;
187187 row . toggle ( ) ;
188188 fixture . detectChanges ( ) ;
@@ -191,7 +191,7 @@ describe('igxGridEditingActions #grid ', () => {
191191
192192 const childRow = childGrid . getRowByIndex ( 0 ) ;
193193 const rowElem = childRow . nativeElement ;
194- UIInteractions . simulateMouseEvent ( 'mouseover ' , rowElem , 0 , 0 ) ;
194+ UIInteractions . simulateMouseEvent ( 'mouseenter ' , rowElem , 0 , 0 ) ;
195195 fixture . detectChanges ( ) ;
196196
197197 expect ( actionStripChild . context ) . toBe ( childRow ) ;
0 commit comments