fix test carousel bootstrap 4.1.1

This commit is contained in:
Nicolas PASCAL
2018-06-15 00:50:49 +02:00
committed by GitHub
parent dca4c5835a
commit d24e60ee50
+10 -10
View File
@@ -76,7 +76,7 @@ describe('carousel', function() {
it('should create clickable prev nav button', function() {
var navPrev = elm.find('a.left');
var navNext = elm.find('a.right');
var navNext = elm.find('a.carousel-control-next');
expect(navPrev.length).toBe(1);
expect(navNext.length).toBe(1);
@@ -144,10 +144,10 @@ describe('carousel', function() {
var indicators = elm.find('ol.carousel-indicators > li');
expect(indicators.length).toBe(0);
var navNext = elm.find('a.right');
var navNext = elm.find('a.carousel-control-prev');
expect(navNext.length).toBe(0);
var navPrev = elm.find('a.left');
var navPrev = elm.find('a.carousel-control-next');
expect(navPrev.length).toBe(0);
});
@@ -160,7 +160,7 @@ describe('carousel', function() {
$scope.isPrevDisabled();
scope.$apply();
var navPrev = elm.find('a.left');
var navPrev = elm.find('a.carousel-control-prev');
expect(navPrev.hasClass('disabled')).toBe(true);
});
@@ -179,7 +179,7 @@ describe('carousel', function() {
$scope.isNextDisabled();
scope.$apply();
var navNext = elm.find('a.right');
var navNext = elm.find('a.carousel-control-prev');
expect(navNext.hasClass('disabled')).toBe(true);
});
@@ -187,7 +187,7 @@ describe('carousel', function() {
var indicators = elm.find('ol.carousel-indicators > li');
expect(indicators.length).not.toBe(0);
var navNext = elm.find('a.right');
var navNext = elm.find('a.carousel-control-next');
expect(navNext.length).not.toBe(0);
var navPrev = elm.find('a.left');
@@ -195,7 +195,7 @@ describe('carousel', function() {
});
it('should go to next when clicking next button', function() {
var navNext = elm.find('a.right');
var navNext = elm.find('a.carousel-control-next');
testSlideActive(0);
navNext.click();
testSlideActive(1);
@@ -326,7 +326,7 @@ describe('carousel', function() {
it('should not change if next is clicked while transitioning', function() {
var carouselScope = elm.children().scope();
var next = elm.find('a.right');
var next = elm.find('a.carousel-control-next');
testSlideActive(0);
carouselScope.$currentTransition = true;
@@ -387,7 +387,7 @@ describe('carousel', function() {
it('issue 4390 - should reset the currentTransition if there are no slides', function() {
var carouselScope = elm.children().scope();
var next = elm.find('a.right');
var next = elm.find('a.carousel-control-next');
scope.slides = [
{content:'new1', index: 1},
{content:'new2', index: 2},
@@ -448,7 +448,7 @@ describe('carousel', function() {
it('should select next after order change', function() {
testSlideActive(1);
var next = elm.find('a.right');
var next = elm.find('a.carousel-control-next');
next.click();
testSlideActive(2);
});