@@ -337,6 +337,15 @@ describe('VariantManagement', () => {
337
337
cy . get ( '[text="Apply Automatically"]' ) . should ( 'be.visible' ) ;
338
338
cy . get ( '[ui5-checkbox]' ) . should ( 'have.length' , 3 ) ;
339
339
340
+ cy . realPress ( 'Escape' ) ;
341
+
342
+ cy . get ( '[icon="navigation-down-arrow"]' ) . click ( ) ;
343
+ cy . findByText ( 'Manage' ) . click ( ) ;
344
+ cy . get ( '[ui5-table]' ) . contains ( 'Apply Automatically' ) . should ( 'be.visible' ) ;
345
+ cy . get ( '[ui5-table]' ) . contains ( 'Default' ) . should ( 'be.visible' ) ;
346
+ cy . get ( '[ui5-table]' ) . contains ( 'Sharing' ) . should ( 'be.visible' ) ;
347
+ cy . get ( '[ui5-table]' ) . contains ( 'Created By' ) . should ( 'be.visible' ) ;
348
+
340
349
cy . mount (
341
350
< VariantManagement hideApplyAutomatically hideSetAsDefault hideShare hideCreatedBy >
342
351
{ TwoVariantItems }
@@ -348,6 +357,15 @@ describe('VariantManagement', () => {
348
357
cy . get ( '[text="Public"]' , { timeout : 50 } ) . should ( 'not.exist' ) ;
349
358
cy . get ( '[text="Apply Automatically"]' , { timeout : 50 } ) . should ( 'not.exist' ) ;
350
359
cy . get ( '[ui5-checkbox]' ) . should ( 'not.exist' ) ;
360
+
361
+ cy . realPress ( 'Escape' ) ;
362
+
363
+ cy . get ( '[icon="navigation-down-arrow"]' ) . click ( ) ;
364
+ cy . findByText ( 'Manage' ) . click ( ) ;
365
+ cy . get ( '[ui5-table]' ) . contains ( 'Apply Automatically' ) . should ( 'not.exist' ) ;
366
+ cy . get ( '[ui5-table]' ) . contains ( 'Default' ) . should ( 'not.exist' ) ;
367
+ cy . get ( '[ui5-table]' ) . contains ( 'Sharing' ) . should ( 'not.exist' ) ;
368
+ cy . get ( '[ui5-table]' ) . contains ( 'Created By' ) . should ( 'not.exist' ) ;
351
369
} ) ;
352
370
353
371
it ( 'Save As' , ( ) => {
0 commit comments