File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ browserTest('Block Repeater', () => {
88 test ( 'headless repeater renders empty state' , ( ) => {
99 waitFor ( ( ) => el ( `${ headless } ` ) . exists && el ( `${ headless } ` ) . text . includes ( 'No blocks yet' ) , { timeout : 15_000 } )
1010 expect ( el ( `${ headless } ` ) . text ) . toContain ( 'No blocks yet' )
11- } )
11+ } , 20_000 )
1212
1313 test ( 'add block buttons are visible' , ( ) => {
1414 expect ( el ( 'add-block-text' ) . exists ) . toBe ( true )
@@ -50,9 +50,9 @@ browserTest('Block Repeater', () => {
5050 waitFor ( ( ) => {
5151 const btn = el ( `${ tid ( 'block-item-image' ) } ${ tid ( 'move-down' ) } ` )
5252 return btn . exists && btn . isDisabled
53- } )
53+ } , { timeout : 15_000 } )
5454 expect ( el ( `${ tid ( 'block-item-image' ) } ${ tid ( 'move-down' ) } ` ) . isDisabled ) . toBe ( true )
55- } )
55+ } , 20_000 )
5656
5757 test ( 'move image block up' , ( ) => {
5858 el ( `${ tid ( 'block-item-image' ) } ${ tid ( 'move-up' ) } ` ) . click ( )
You can’t perform that action at this time.
0 commit comments