From da8a24d17452040080a93dddfbb8d974fe5b4585 Mon Sep 17 00:00:00 2001 From: Andrew Date: Mon, 7 Jul 2014 13:17:19 -0600 Subject: [PATCH] test(ionList): remove tap-disabled from tests --- test/unit/angular/directive/list.unit.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/unit/angular/directive/list.unit.js b/test/unit/angular/directive/list.unit.js index 3061ea32a7..6bade8bc25 100644 --- a/test/unit/angular/directive/list.unit.js +++ b/test/unit/angular/directive/list.unit.js @@ -95,7 +95,6 @@ describe('ionList directive', function() { expect(deleteButtons.hasClass('ng-hide')).toBe(false); expect(el.children().hasClass('list-left-editing')).toBe(true); var content = angular.element(el[0].querySelectorAll('.item-content')); - expect(content.attr('data-tap-disabled')).toEqual('true'); })); it('should watch ctrl.showDelete when false from true', inject(function($animate) { @@ -116,7 +115,6 @@ describe('ionList directive', function() { expect(deleteButtons.length).not.toBe(0); expect(el.children().hasClass('list-left-editing')).toBe(false); var content = angular.element(el[0].querySelectorAll('.item-content')); - expect(content.attr('data-tap-disabled')).toBeFalsy(); })); it('should watch ctrl.showReorder when true', inject(function($animate) { @@ -136,7 +134,6 @@ describe('ionList directive', function() { expect(reorderButtons.hasClass('ng-hide')).toBe(false); expect(el.children().hasClass('list-right-editing')).toBe(true); var content = angular.element(el[0].querySelectorAll('.item-content')); - expect(content.attr('data-tap-disabled')).toEqual('true'); })); it('should watch ctrl.showReorder when false from true', inject(function($animate) { @@ -157,7 +154,6 @@ describe('ionList directive', function() { expect(reorderButtons.hasClass('ng-hide')).toBe(true); expect(el.children().hasClass('list-right-editing')).toBe(false); var content = angular.element(el[0].querySelectorAll('.item-content')); - expect(content.attr('data-tap-disabled')).toBeFalsy(); })); });