Skip to content

Commit

Permalink
fixed lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisleewilcox committed Jul 23, 2023
1 parent 1e10a14 commit 67573c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions e2e/pages/modals/ConnectedAccountsModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ export default class ConnectedAccountsModal {
}

static async tapToSetAsPrimaryAccount() {
await TestHelpers.delay(8000);
// await TestHelpers.delay(8000);
if (device.getPlatform() === 'android') {
await TestHelpers.tapByText(messages.accounts.imported);//does not work for iOS
await TestHelpers.tapByText(messages.accounts.imported); //does not work for iOS
} else {
await TestHelpers.typeTextAndHideKeyboard(CELL_SELECT_TEST_ID, 1);//not working for android or iOS
await TestHelpers.typeTextAndHideKeyboard(CELL_SELECT_TEST_ID, 1); //not working for android or iOS
}
await TestHelpers.delay(8000); //waiting for toast message to move out of the way
}
Expand Down

0 comments on commit 67573c0

Please sign in to comment.