Skip to content

Commit 62d1bce

Browse files
authored
Merge branch 'master' into feat/recovery-mode
2 parents f1a82ed + d89c29e commit 62d1bce

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/e2e.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ jobs:
7373
- { name: settings, grep: "@settings" }
7474
- { name: send, grep: "@send" }
7575
- { name: lightning_security, grep: "@lightning|@security" }
76+
- { name: lnurl, grep: "@lnurl" }
7677

7778
name: e2e-tests - ${{ matrix.shard.name }}
7879

app/src/main/java/to/bitkit/ui/screens/wallets/withdraw/WithdrawConfirmScreen.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,13 @@ fun WithdrawConfirmScreen(
4747
modifier = Modifier.padding(horizontal = 16.dp)
4848
) {
4949
VerticalSpacer(16.dp)
50-
BalanceHeaderView(sats = uiState.amount.toLong(), modifier = Modifier.fillMaxWidth())
50+
BalanceHeaderView(
51+
sats = uiState.amount.toLong(),
52+
testTag = "WithdrawAmount",
53+
modifier = Modifier
54+
.fillMaxWidth()
55+
.testTag("WithdrawAmount")
56+
)
5157
VerticalSpacer(46.dp)
5258

5359
BodyM(

0 commit comments

Comments
 (0)