Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ci_run_android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ if [[ "${BACKEND:-local}" != "mainnet" ]]; then
adb reverse tcp:9735 tcp:9735
# lnurl server port
adb reverse tcp:30001 tcp:30001
# homegate port
adb reverse tcp:6288 tcp:6288
fi
# show touches
adb shell settings put system show_touches 1
Expand Down
1 change: 0 additions & 1 deletion test/helpers/lnd.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ export async function getLDKNodeID(): Promise<string> {
export async function connectToLND(lndNodeID: string, { navigationClose = true } = {}) {
await tap('Channels');
await tap('NavigationAction');
if(driver.isIOS) { await tap('FundCustom'); }
await tap('FundManual');
await typeText('NodeIdInput', lndNodeID);
await typeText('PortInput', '9735');
Expand Down