@@ -2513,22 +2513,22 @@ describe('IgxQueryBuilder', () => {
25132513
25142514 it ( 'Should render drop ghost properly when mouse dragged down on the left.' , fakeAsync ( ( ) => {
25152515 const draggedChip = chipComponents [ 1 ] . componentInstance ;
2516- QueryBuilderFunctions . dragGhostWithMouse ( fix , draggedChip , 100 , 75 , true ) ;
2516+ QueryBuilderFunctions . verifyGhostPositionOnMouseDrag ( fix , draggedChip , 100 , 75 , true ) ;
25172517 } ) ) ;
25182518
25192519 it ( 'Should render drop ghost properly when mouse dragged up on the left.' , fakeAsync ( ( ) => {
25202520 const draggedChip = chipComponents [ 1 ] . componentInstance ;
2521- QueryBuilderFunctions . dragGhostWithMouse ( fix , draggedChip , 100 , 75 + 350 , false ) ;
2521+ QueryBuilderFunctions . verifyGhostPositionOnMouseDrag ( fix , draggedChip , 100 , 75 + 350 , false ) ;
25222522 } ) ) ;
25232523
25242524 it ( 'Should render drop ghost properly when mouse dragged down on the right.' , fakeAsync ( ( ) => {
25252525 const draggedChip = chipComponents [ 1 ] . componentInstance ;
2526- QueryBuilderFunctions . dragGhostWithMouse ( fix , draggedChip , 500 , 75 , true ) ;
2526+ QueryBuilderFunctions . verifyGhostPositionOnMouseDrag ( fix , draggedChip , 500 , 75 , true ) ;
25272527 } ) ) ;
25282528
25292529 it ( 'Should render drop ghost properly when mouse dragged up on the right.' , fakeAsync ( ( ) => {
25302530 const draggedChip = chipComponents [ 1 ] . componentInstance ;
2531- QueryBuilderFunctions . dragGhostWithMouse ( fix , draggedChip , 500 , 75 + 350 , false ) ;
2531+ QueryBuilderFunctions . verifyGhostPositionOnMouseDrag ( fix , draggedChip , 500 , 75 + 350 , false ) ;
25322532 } ) ) ;
25332533
25342534 it ( 'Should position drop ghost below the target condition on dragging down.' , ( ) => {
0 commit comments