Skip to content

Commit

Permalink
test(suite-native): regtest poc removed
Browse files Browse the repository at this point in the history
  • Loading branch information
PeKne committed Oct 10, 2024
1 parent 1150abe commit 37705ca
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 59 deletions.
2 changes: 0 additions & 2 deletions suite-native/app/e2e/pageObjects/accountDetailActions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ class AccountDetailActions {

async openSend() {
await element(by.id('@account-detail/send-button')).tap();

await detoxExpect(element(by.id('@screen/SendOutputs'))).toBeVisible();
}
}

Expand Down
16 changes: 8 additions & 8 deletions suite-native/app/e2e/pageObjects/alertSheetActions.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
class AlertSheetActions {
async tapPrimaryButton() {
await waitFor(element(by.id('@alert-sheet/primary-button')))
.toBeVisible()
.withTimeout(10000);
await element(by.id('@alert-sheet/primary-button')).tap();
const primaryButtonElement = element(by.id('@alert-sheet/primary-button'));

await waitFor(primaryButtonElement).toBeVisible().withTimeout(10000);
await primaryButtonElement.tap();
}

async tapSecondaryButton() {
await waitFor(element(by.id('@alert-sheet/secondary-button')))
.toBeVisible()
.withTimeout(10000);
await element(by.id('@alert-sheet/secondary-button')).tap();
const secondaryButtonElement = element(by.id('@alert-sheet/secondary-button'));

await waitFor(secondaryButtonElement).toBeVisible().withTimeout(10000);
await secondaryButtonElement.tap();
}
}

Expand Down
48 changes: 0 additions & 48 deletions suite-native/app/e2e/tests/regtestPOC.test.ts

This file was deleted.

1 change: 0 additions & 1 deletion suite-native/app/e2e/tests/send.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ const prepareTransactionForOnDeviceReview = async (isFormEmpty: boolean = true)

await onSendOutputsForm.submitForm();

await onSendFees.selectFee('normal');
await onSendFees.submitFee();
};

Expand Down

0 comments on commit 37705ca

Please sign in to comment.