Skip to content

Commit

Permalink
Fix Delete wallet e2e (#3770)
Browse files Browse the repository at this point in the history
* changing copy from log out to lock

* edit contact nonsense.

* remove double tap
  • Loading branch information
cortisiko authored Feb 17, 2022
1 parent cd39a4d commit 1ad83bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions e2e/pages/Drawer/DrawerView.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ export default class DrawerView {
static async tapTransactions() {
await TestHelpers.tapByText('Transactions');
}
static async tapLogOut() {
await TestHelpers.tapByText('Log Out');
static async tapLockAccount() {
await TestHelpers.tapByText('Lock');
}

static async tapYesAlertButton() {
Expand Down
2 changes: 1 addition & 1 deletion e2e/specs/delete-wallet.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ describe('Import wallet with 24 word seedphrase and delete wallet flow', () => {
await WalletView.tapDrawerButton();

await DrawerView.isVisible();
await DrawerView.tapLogOut();
await DrawerView.tapLockAccount();
await DrawerView.tapYesAlertButton();
await LoginView.isVisible();
});
Expand Down

0 comments on commit 1ad83bf

Please sign in to comment.