Skip to content

Commit

Permalink
fix: flaky tests `Add existing token using search renders the balance…
Browse files Browse the repository at this point in the history
… for the chosen token` (#27853)

<!--
Please submit this PR as a draft initially.
Do not mark it as "Ready for review" until the template has been
completely filled out, and PR status checks have passed at least once.
-->

## **Description**

This PR fixes a couple of race conditions on the test `Add existing
token using search renders the balance for the chosen token` and the
rest of the specs in the Add token test file.
The changes have also uncovered a production bug in mmi build (see
[here](#27854)). So
now, this PR is blocked until the fix for mmi is done.

[Edit] The fix has now been merged here, so the PR is ready
#27855

[![Open in GitHub
Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/MetaMask/metamask-extension/pull/27853?quickstart=1)

## **Related issues**

Fixes: #27703

## **Manual testing steps**

1. Check ci

## **Screenshots/Recordings**

<!-- If applicable, add screenshots and/or recordings to visualize the
before and after of your change. -->

### **Before**

<!-- [screenshots/recordings] -->

### **After**

<!-- [screenshots/recordings] -->

## **Pre-merge author checklist**

- [x] I've followed [MetaMask Contributor
Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask
Extension Coding
Standards](https://github.com/MetaMask/metamask-extension/blob/develop/.github/guidelines/CODING_GUIDELINES.md).
- [x] I've completed the PR template to the best of my ability
- [x] I’ve included tests if applicable
- [x] I’ve documented my code using [JSDoc](https://jsdoc.app/) format
if applicable
- [x] I’ve applied the right labels on the PR (see [labeling
guidelines](https://github.com/MetaMask/metamask-extension/blob/develop/.github/guidelines/LABELING_GUIDELINES.md)).
Not required for external contributors.

## **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.

---------

Co-authored-by: sahar-fehri <sahar.fehri@consensys.net>
  • Loading branch information
seaona and sahar-fehri authored Oct 17, 2024
1 parent 2afe52e commit bbba7c5
Showing 1 changed file with 30 additions and 25 deletions.
55 changes: 30 additions & 25 deletions test/e2e/tests/tokens/add-hide-token.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ const {
clickNestedButton,
} = require('../../helpers');
const FixtureBuilder = require('../../fixture-builder');
const { SMART_CONTRACTS } = require('../../seeder/smart-contracts');
const { CHAIN_IDS } = require('../../../../shared/constants/network');

describe('Add hide token', function () {
Expand Down Expand Up @@ -126,16 +127,16 @@ describe('Add existing token using search', function () {
tag: 'p',
});
await driver.clickElement({ text: 'Next', tag: 'button' });
await driver.clickElement(
await driver.clickElementAndWaitToDisappear(
'[data-testid="import-tokens-modal-import-button"]',
);
await driver.clickElement(
'[data-testid="account-overview__asset-tab"]',
);
const [, tkn] = await driver.findElements(
'[data-testid="multichain-token-list-button"]',
);
await tkn.click();
await driver.clickElement({
tag: 'span',
text: 'Basic Attention Token',
});

await driver.waitForSelector({
css: '[data-testid="multichain-token-list-item-value"]',
Expand All @@ -147,6 +148,8 @@ describe('Add existing token using search', function () {
});

describe('Add token using wallet_watchAsset', function () {
const smartContract = SMART_CONTRACTS.HST;

it('opens a notification that adds a token when wallet_watchAsset is executed, then approves', async function () {
await withFixtures(
{
Expand All @@ -155,9 +158,13 @@ describe('Add token using wallet_watchAsset', function () {
.withPermissionControllerConnectedToTestDapp()
.build(),
ganacheOptions: defaultGanacheOptions,
smartContract,
title: this.test.fullTitle(),
},
async ({ driver }) => {
async ({ driver, contractRegistry }) => {
const contractAddress = await contractRegistry.getContractAddress(
smartContract,
);
await unlockWallet(driver);

await driver.openNewPage('http://127.0.0.1:8080/');
Expand All @@ -168,27 +175,24 @@ describe('Add token using wallet_watchAsset', function () {
params: {
type: 'ERC20',
options: {
address: '0x86002be4cdd922de1ccb831582bf99284b99ac12',
address: '${contractAddress}',
symbol: 'TST',
decimals: 4
},
}
})
`);

const windowHandles = await driver.waitUntilXWindowHandles(3);

await driver.switchToWindowWithTitle(
WINDOW_TITLES.Dialog,
windowHandles,
);
await driver.switchToWindowWithTitle(WINDOW_TITLES.Dialog);

await driver.clickElement({
await driver.clickElementAndWaitForWindowToClose({
tag: 'button',
text: 'Add token',
});

await driver.switchToWindowWithTitle('MetaMask', windowHandles);
await driver.switchToWindowWithTitle(
WINDOW_TITLES.ExtensionInFullScreenView,
);

await driver.waitForSelector({
css: '[data-testid="multichain-token-list-item-value"]',
Expand All @@ -206,9 +210,13 @@ describe('Add token using wallet_watchAsset', function () {
.withPermissionControllerConnectedToTestDapp()
.build(),
ganacheOptions: defaultGanacheOptions,
smartContract,
title: this.test.fullTitle(),
},
async ({ driver }) => {
async ({ driver, contractRegistry }) => {
const contractAddress = await contractRegistry.getContractAddress(
smartContract,
);
await unlockWallet(driver);

await driver.openNewPage('http://127.0.0.1:8080/');
Expand All @@ -219,27 +227,24 @@ describe('Add token using wallet_watchAsset', function () {
params: {
type: 'ERC20',
options: {
address: '0x86002be4cdd922de1ccb831582bf99284b99ac12',
address: '${contractAddress}',
symbol: 'TST',
decimals: 4
},
}
})
`);

const windowHandles = await driver.waitUntilXWindowHandles(3);
await driver.switchToWindowWithTitle(WINDOW_TITLES.Dialog);

await driver.switchToWindowWithTitle(
WINDOW_TITLES.Dialog,
windowHandles,
);

await driver.clickElement({
await driver.clickElementAndWaitForWindowToClose({
tag: 'button',
text: 'Cancel',
});

await driver.switchToWindowWithTitle('MetaMask', windowHandles);
await driver.switchToWindowWithTitle(
WINDOW_TITLES.ExtensionInFullScreenView,
);

const assetListItems = await driver.findElements(
'.multichain-token-list-item',
Expand Down

0 comments on commit bbba7c5

Please sign in to comment.