We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1748c32 + ff9b9eb commit 7bf845eCopy full SHA for 7bf845e
2 files changed
ci_run_android.sh
@@ -35,6 +35,8 @@ if [[ "${BACKEND:-local}" != "mainnet" ]]; then
35
adb reverse tcp:9735 tcp:9735
36
# lnurl server port
37
adb reverse tcp:30001 tcp:30001
38
+ # homegate port
39
+ adb reverse tcp:6288 tcp:6288
40
fi
41
# show touches
42
adb shell settings put system show_touches 1
test/helpers/lnd.ts
@@ -110,7 +110,6 @@ export async function getLDKNodeID(): Promise<string> {
110
export async function connectToLND(lndNodeID: string, { navigationClose = true } = {}) {
111
await tap('Channels');
112
await tap('NavigationAction');
113
- if(driver.isIOS) { await tap('FundCustom'); }
114
await tap('FundManual');
115
await typeText('NodeIdInput', lndNodeID);
116
await typeText('PortInput', '9735');
0 commit comments