File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
extensions/amp-base-carousel/0.1/test-e2e Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -31,21 +31,18 @@ describes.endtoend(
31
31
nextArrow = await getNextArrow ( controller ) ;
32
32
} ) ;
33
33
34
- // TODO(#40214): fix flaky test.
35
- it . skip ( 'should have the arrows in the correct initial state' , async ( ) => {
34
+ it ( 'should have the arrows in the correct initial state' , async ( ) => {
36
35
await expect ( css ( prevArrow , 'opacity' ) ) . to . equal ( '0' ) ;
37
36
await expect ( css ( nextArrow , 'opacity' ) ) . to . equal ( '1' ) ;
38
37
} ) ;
39
38
40
- // TODO(#40214): fix flaky test.
41
- it . skip ( 'should show the prev arrow when going to the first slide' , async ( ) => {
39
+ it ( 'should show the prev arrow when going to the first slide' , async ( ) => {
42
40
await controller . click ( nextArrow ) ;
43
41
await expect ( css ( prevArrow , 'opacity' ) ) . to . equal ( '1' ) ;
44
42
await expect ( css ( nextArrow , 'opacity' ) ) . to . equal ( '1' ) ;
45
43
} ) ;
46
44
47
- // TODO(#40214): fix flaky test.
48
- it . skip ( 'should hide the next arrow when going to the end' , async ( ) => {
45
+ it ( 'should hide the next arrow when going to the end' , async ( ) => {
49
46
const el = await getScrollingElement ( controller ) ;
50
47
await controller . scrollTo ( el , { left : ( SLIDE_COUNT - 1 ) * pageWidth } ) ;
51
48
You can’t perform that action at this time.
0 commit comments