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 33
33
it ( 'should initialize uiGridScroller.initiated to NONE' , function ( ) {
34
34
expect ( uiGridScroller . initiated ) . toEqual ( uiGridScrollerConstants . scrollType . NONE ) ;
35
35
} ) ;
36
- xdescribe ( 'events' , function ( ) {
36
+ describe ( 'events' , function ( ) {
37
37
describe ( 'on touchstart' , function ( ) {
38
38
beforeEach ( function ( ) {
39
39
element . on . and . callFake ( function ( eventName , callback ) {
59
59
element . on . and . callFake ( angular . noop ) ;
60
60
} ) ;
61
61
} ) ;
62
- describe ( 'on touchmove' , function ( ) {
62
+ xdescribe ( 'on touchmove' , function ( ) {
63
63
var preventDefaultSpy ;
64
64
65
65
beforeEach ( function ( ) {
128
128
element . on . and . callFake ( angular . noop ) ;
129
129
} ) ;
130
130
}
131
- describe ( 'on touchend' , function ( ) {
131
+ xdescribe ( 'on touchend' , function ( ) {
132
132
beforeEach ( function ( ) {
133
133
element . on . and . callFake ( function ( eventName , callback ) {
134
134
if ( eventName === 'touchend' ) {
144
144
} ) ;
145
145
testEndFunction ( ) ;
146
146
} ) ;
147
- describe ( 'on touchcancel' , function ( ) {
147
+ xdescribe ( 'on touchcancel' , function ( ) {
148
148
beforeEach ( function ( ) {
149
149
element . on . and . callFake ( function ( eventName , callback ) {
150
150
if ( eventName === 'touchcancel' ) {
You can’t perform that action at this time.
0 commit comments