@@ -75,11 +75,7 @@ describe('@receive - Receive', () => {
7575 await tap ( 'SpecifyInvoiceButton' ) ;
7676 await expectText ( '123' ) ;
7777 await expectTextWithin ( 'ReceiveNote' , note ) ;
78- // tags not shown on iOS
79- // https://github.com/synonymdev/bitkit-ios/issues/197
80- if ( driver . isAndroid ) {
81- await expectText ( tag ) ;
82- }
78+ await expectText ( tag ) ;
8379
8480 // Close & reopen
8581 await swipeFullScreen ( 'down' ) ;
@@ -94,15 +90,11 @@ describe('@receive - Receive', () => {
9490 await expectTextWithin ( 'ReceiveNote' , note , { visible : false } ) ;
9591 await expectText ( tag , { visible : false } ) ;
9692
97- // tags not shown on iOS
98- // https://github.com/synonymdev/bitkit-ios/issues/197
99- if ( driver . isAndroid ) {
100- // check previous tags & delete
101- await tap ( 'TagsAdd' ) ;
102- await tap ( `Tag-${ tag } ` ) ;
103- await expectText ( tag ) ;
104- await tap ( `Tag-${ tag } -delete` ) ;
105- await expectText ( tag , { visible : false } ) ;
106- }
93+ // check previous tags & delete
94+ await tap ( 'TagsAdd' ) ;
95+ await tap ( `Tag-${ tag } ` ) ;
96+ await expectText ( tag ) ;
97+ await tap ( `Tag-${ tag } -delete` ) ;
98+ await expectText ( tag , { visible : false } ) ;
10799 } ) ;
108100} ) ;
0 commit comments