Skip to content

Commit d4d5d2e

Browse files
committed
temp: spendingBalanceReady for iOS
1 parent 46cef06 commit d4d5d2e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/specs/lightning.e2e.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,12 @@ describe('@lightning - Lightning', () => {
100100
await waitForActiveChannel(lnd, ldkNodeId);
101101

102102
// Toast message
103-
await waitForToast('SpendingBalanceReadyToast');
104-
103+
if (driver.isIOS) {
104+
await expectText('Spending Balance Ready');
105+
await expectText('Spending Balance Ready', { visible: false });
106+
} else {
107+
await waitForToast('SpendingBalanceReadyToast');
108+
}
105109
// check channel status
106110
await checkChannelStatus();
107111

0 commit comments

Comments
 (0)