Skip to content

Commit 37705ca

Browse files
committed
test(suite-native): regtest poc removed
1 parent 1150abe commit 37705ca

File tree

4 files changed

+8
-59
lines changed

4 files changed

+8
-59
lines changed

Diff for: suite-native/app/e2e/pageObjects/accountDetailActions.ts

-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ class AccountDetailActions {
1515

1616
async openSend() {
1717
await element(by.id('@account-detail/send-button')).tap();
18-
19-
await detoxExpect(element(by.id('@screen/SendOutputs'))).toBeVisible();
2018
}
2119
}
2220

Diff for: suite-native/app/e2e/pageObjects/alertSheetActions.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
class AlertSheetActions {
22
async tapPrimaryButton() {
3-
await waitFor(element(by.id('@alert-sheet/primary-button')))
4-
.toBeVisible()
5-
.withTimeout(10000);
6-
await element(by.id('@alert-sheet/primary-button')).tap();
3+
const primaryButtonElement = element(by.id('@alert-sheet/primary-button'));
4+
5+
await waitFor(primaryButtonElement).toBeVisible().withTimeout(10000);
6+
await primaryButtonElement.tap();
77
}
88

99
async tapSecondaryButton() {
10-
await waitFor(element(by.id('@alert-sheet/secondary-button')))
11-
.toBeVisible()
12-
.withTimeout(10000);
13-
await element(by.id('@alert-sheet/secondary-button')).tap();
10+
const secondaryButtonElement = element(by.id('@alert-sheet/secondary-button'));
11+
12+
await waitFor(secondaryButtonElement).toBeVisible().withTimeout(10000);
13+
await secondaryButtonElement.tap();
1414
}
1515
}
1616

Diff for: suite-native/app/e2e/tests/regtestPOC.test.ts

-48
This file was deleted.

Diff for: suite-native/app/e2e/tests/send.test.ts

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ const prepareTransactionForOnDeviceReview = async (isFormEmpty: boolean = true)
4343

4444
await onSendOutputsForm.submitForm();
4545

46-
await onSendFees.selectFee('normal');
4746
await onSendFees.submitFee();
4847
};
4948

0 commit comments

Comments
 (0)