From a91f558029a79dd858e6e62b9d95ffe14cde6e89 Mon Sep 17 00:00:00 2001 From: Curtis David Date: Thu, 30 Nov 2023 17:35:23 -0500 Subject: [PATCH] test: fix wallet test (#7966) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## **Description** The purpose of this PR is to address the failing wallet-tests.spec. The test was failing because of a token that no longer appears in the auto complete search. Feel free to read up more on this via: https://consensys.slack.com/archives/C02U025CVU4/p1701360559491539 ## **Related issues** Fixes: # ## **Manual testing steps** 1. Go to this page... 2. 3. ## **Screenshots/Recordings** ### **Before** ### **After** ## **Pre-merge author checklist** - [ ] I’ve followed [MetaMask Coding Standards](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've clearly explained what problem this PR is solving and how it is solved. - [ ] I've linked related issues - [ ] I've included manual testing steps - [ ] I've included screenshots/recordings if applicable - [ ] I’ve included tests if applicable - [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-mobile/blob/main/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. - [ ] I’ve properly set the pull request status: - [ ] In case it's not yet "ready for review", I've set it to "draft". - [ ] In case it's "ready for review", I've changed it from "draft" to "non-draft". ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots. --- e2e/specs/wallet/wallet-tests.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/e2e/specs/wallet/wallet-tests.spec.js b/e2e/specs/wallet/wallet-tests.spec.js index 8f0888f6710..640cb4d3ac9 100644 --- a/e2e/specs/wallet/wallet-tests.spec.js +++ b/e2e/specs/wallet/wallet-tests.spec.js @@ -92,12 +92,12 @@ describe(Smoke('Wallet Tests'), () => { await ImportTokensView.tapImportButton(); await WalletView.isVisible(); await TestHelpers.delay(8000); // to prevent flakey behavior in bitrise - await WalletView.isTokenVisibleInWallet('0 XRP20'); + await WalletView.isTokenVisibleInWallet('0 XRP'); }); it('should hide token from Wallet view', async () => { - await WalletView.removeTokenFromWallet('0 XRP20'); + await WalletView.removeTokenFromWallet('0 XRP'); await TestHelpers.delay(1500); - await WalletView.tokenIsNotVisibleInWallet('0 XRP20'); + await WalletView.tokenIsNotVisibleInWallet('XRP'); }); });