File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -131,16 +131,21 @@ describe('@onchain - Onchain', () => {
131131 // send - onchain - receiver sees no confetti — missing-in-ldk-node missing onchain payment event
132132 // await elementById('ReceivedTransaction').waitForDisplayed();
133133
134- if ( i === 1 ) {
135- await dismissBackupTimedSheet ( { triggerTimedSheet : driver . isIOS } ) ;
136- await acknowledgeHighBalanceWarning ( { triggerTimedSheet : driver . isIOS } ) ;
134+ if ( i === 1 && driver . isAndroid ) {
135+ await dismissBackupTimedSheet ( ) ;
136+ await acknowledgeHighBalanceWarning ( ) ;
137137 }
138138 await sleep ( 1000 ) ; // wait for the app to settle
139139
140140 // - shows correct total balance
141141 const totalBalance = await elementByIdWithin ( 'TotalBalance-primary' , 'MoneyText' ) ;
142142 const expected = `${ i } 00 000 000` ;
143143 await expect ( totalBalance ) . toHaveText ( expected ) ;
144+
145+ if ( i === 1 && driver . isIOS ) {
146+ await dismissBackupTimedSheet ( { triggerTimedSheet : true } ) ;
147+ await acknowledgeHighBalanceWarning ( { triggerTimedSheet : true } ) ;
148+ }
144149 }
145150
146151 // - can send total balance and tag the tx //
You can’t perform that action at this time.
0 commit comments