File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/features/custom-scrolling/test Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3333 it ( 'should initialize uiGridScroller.initiated to NONE' , function ( ) {
3434 expect ( uiGridScroller . initiated ) . toEqual ( uiGridScrollerConstants . scrollType . NONE ) ;
3535 } ) ;
36- xdescribe ( 'events' , function ( ) {
36+ describe ( 'events' , function ( ) {
3737 describe ( 'on touchstart' , function ( ) {
3838 beforeEach ( function ( ) {
3939 element . on . and . callFake ( function ( eventName , callback ) {
5959 element . on . and . callFake ( angular . noop ) ;
6060 } ) ;
6161 } ) ;
62- describe ( 'on touchmove' , function ( ) {
62+ xdescribe ( 'on touchmove' , function ( ) {
6363 var preventDefaultSpy ;
6464
6565 beforeEach ( function ( ) {
128128 element . on . and . callFake ( angular . noop ) ;
129129 } ) ;
130130 }
131- describe ( 'on touchend' , function ( ) {
131+ xdescribe ( 'on touchend' , function ( ) {
132132 beforeEach ( function ( ) {
133133 element . on . and . callFake ( function ( eventName , callback ) {
134134 if ( eventName === 'touchend' ) {
144144 } ) ;
145145 testEndFunction ( ) ;
146146 } ) ;
147- describe ( 'on touchcancel' , function ( ) {
147+ xdescribe ( 'on touchcancel' , function ( ) {
148148 beforeEach ( function ( ) {
149149 element . on . and . callFake ( function ( eventName , callback ) {
150150 if ( eventName === 'touchcancel' ) {
You can’t perform that action at this time.
0 commit comments