Skip to content

Commit 907c26c

Browse files
authored
Merge pull request #5865 from mportuga/features/customScrollerTests
test(scroller): Adding back events test for touchEnabled = true
2 parents ecbf9cb + 4da59e8 commit 907c26c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/features/custom-scrolling/test/ui-grid-custom-scroller.factory.spec.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
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) {
@@ -59,7 +59,7 @@
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() {
@@ -128,7 +128,7 @@
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') {
@@ -144,7 +144,7 @@
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') {

0 commit comments

Comments
 (0)