@@ -242,7 +242,12 @@ describe('IgxChipsArea', () => {
242242 return fix . whenStable ( ) ;
243243 } ) . then ( ( ) => {
244244 fix . detectChanges ( ) ;
245- UIInteractions . simulatePointerEvent ( 'pointermove' , secondChip . dragDir [ '_dragGhost' ] , startingX + xDragDifference , startingY + yDragDifference ) ;
245+ UIInteractions . simulatePointerEvent (
246+ 'pointermove' ,
247+ secondChip . dragDir [ '_dragGhost' ] ,
248+ startingX + xDragDifference ,
249+ startingY + yDragDifference
250+ ) ;
246251
247252 setTimeout ( ( ) => {
248253 const afterDragTop = secondChip . dragDir [ '_dragGhost' ] . getBoundingClientRect ( ) . top ;
@@ -282,7 +287,12 @@ describe('IgxChipsArea', () => {
282287 return fix . whenStable ( ) ;
283288 } ) . then ( ( ) => {
284289 fix . detectChanges ( ) ;
285- UIInteractions . simulatePointerEvent ( 'pointermove' , secondChip . dragDir [ '_dragGhost' ] , startingX + xDragDifference , startingY + yDragDifference ) ;
290+ UIInteractions . simulatePointerEvent (
291+ 'pointermove' ,
292+ secondChip . dragDir [ '_dragGhost' ] ,
293+ startingX + xDragDifference ,
294+ startingY + yDragDifference
295+ ) ;
286296 fix . detectChanges ( ) ;
287297
288298 setTimeout ( ( ) => {
@@ -325,13 +335,23 @@ describe('IgxChipsArea', () => {
325335 return fix . whenStable ( ) ;
326336 } ) . then ( ( ) => {
327337 fix . detectChanges ( ) ;
328- UIInteractions . simulatePointerEvent ( 'pointermove' , secondChip . dragDir [ '_dragGhost' ] , startingX + xDragDifference , startingY + yDragDifference ) ;
338+ UIInteractions . simulatePointerEvent (
339+ 'pointermove' ,
340+ secondChip . dragDir [ '_dragGhost' ] ,
341+ startingX + xDragDifference ,
342+ startingY + yDragDifference
343+ ) ;
329344 fix . detectChanges ( ) ;
330345
331346 return fix . whenRenderingDone ( ) ;
332347 } ) . then ( ( ) => {
333348 expect ( firstChip . nativeElement . children [ 1 ] . style . visibility ) . toEqual ( 'hidden' ) ;
334- UIInteractions . simulatePointerEvent ( 'pointerup' , secondChip . dragDir [ '_dragGhost' ] , startingX + xDragDifference , startingY + yDragDifference ) ;
349+ UIInteractions . simulatePointerEvent (
350+ 'pointerup' ,
351+ secondChip . dragDir [ '_dragGhost' ] ,
352+ startingX + xDragDifference ,
353+ startingY + yDragDifference
354+ ) ;
335355 return fix . whenRenderingDone ( ) ;
336356 } ) . then ( ( ) => {
337357 expect ( firstChip . nativeElement . children [ 1 ] . style . visibility ) . toEqual ( 'visible' ) ;
0 commit comments