Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: cherry-pick: test: fix wallet test (#7966) #7970

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions e2e/specs/wallet/wallet-tests.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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');
});
});
Loading