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