File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -572,16 +572,16 @@ describe('Ionic Tap', function() {
572
572
it ( 'Should tapHasPointerMoved true if greater than or equal to release tolerance' , function ( ) {
573
573
tapPointerStart = { x : 100 , y : 100 } ;
574
574
575
- var s = tapHasPointerMoved ( { clientX : 111 , clientY : 100 , target : document . createElement ( 'button' ) } ) ;
575
+ var s = tapHasPointerMoved ( { clientX : 113 , clientY : 100 , target : document . createElement ( 'button' ) } ) ;
576
576
expect ( s ) . toEqual ( true ) ;
577
577
578
- s = tapHasPointerMoved ( { clientX : 89 , clientY : 100 , target : document . createElement ( 'button' ) } ) ;
578
+ s = tapHasPointerMoved ( { clientX : 87 , clientY : 100 , target : document . createElement ( 'button' ) } ) ;
579
579
expect ( s ) . toEqual ( true ) ;
580
580
581
- s = tapHasPointerMoved ( { clientX : 100 , clientY : 109 , target : document . createElement ( 'button' ) } ) ;
581
+ s = tapHasPointerMoved ( { clientX : 100 , clientY : 113 , target : document . createElement ( 'button' ) } ) ;
582
582
expect ( s ) . toEqual ( true ) ;
583
583
584
- s = tapHasPointerMoved ( { clientX : 100 , clientY : 91 , target : document . createElement ( 'button' ) } ) ;
584
+ s = tapHasPointerMoved ( { clientX : 100 , clientY : 87 , target : document . createElement ( 'button' ) } ) ;
585
585
expect ( s ) . toEqual ( true ) ;
586
586
587
587
s = tapHasPointerMoved ( { clientX : 100 , clientY : 200 , target : document . createElement ( 'button' ) } ) ;
You can’t perform that action at this time.
0 commit comments