Skip to content

Commit

Permalink
Merge pull request #3796 from Emurgo/denis/moving-test-from-blacklist
Browse files Browse the repository at this point in the history
Moving test from blacklist
  • Loading branch information
Nebyt authored Dec 26, 2024
2 parents 307e554 + 97a3ba1 commit e266935
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 19 deletions.
4 changes: 2 additions & 2 deletions packages/e2e-tests/pages/walletCommonBase.page.js
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ class WalletCommonBase extends BasePage {
this.walletBalanceTextLocator,
async () => {
const rawBalanceText = await this.getText(this.walletBalanceTextLocator);
const balanceStr = rawBalanceText.split(' ')[0];
const balanceStr = rawBalanceText.split(' ')[0].trim();
return balanceStr === balanceReplacer;
}
);
Expand All @@ -335,7 +335,7 @@ class WalletCommonBase extends BasePage {
this.walletFiatBalanceTextLocator,
async () => {
const rawFiatBalanceText = await this.getText(this.walletFiatBalanceTextLocator);
const fiatBalanceStr = rawFiatBalanceText.split(' ')[0];
const fiatBalanceStr = rawFiatBalanceText.split(' ')[0].trim();
return fiatBalanceStr === balanceReplacer;
}
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
import BasePage from '../../pages/basepage.js';
import { customAfterEach } from '../../utils/customHooks.js';
import TransactionsSubTab from '../../pages/wallet/walletTab/walletTransactions.page.js';
import ReceiveSubTab from '../../pages/wallet/walletTab/receiveSubTab.page.js';
import BasePage from '../pages/basepage.js';
import { customAfterEach } from '../utils/customHooks.js';
import TransactionsSubTab from '../pages/wallet/walletTab/walletTransactions.page.js';
import ReceiveSubTab from '../pages/wallet/walletTab/receiveSubTab.page.js';
import { expect } from 'chai';
import { getTestLogger } from '../../utils/utils.js';
import { oneMinute } from '../../helpers/timeConstants.js';
import driversPoolsManager from '../../utils/driversPool.js';
import { prepareWallet } from '../../helpers/restoreWalletHelper.js';
import { testWallet1 } from '../../utils/testWallets.js';
import { getTestLogger } from '../utils/utils.js';
import { oneMinute } from '../helpers/timeConstants.js';
import driversPoolsManager from '../utils/driversPool.js';
import { prepareWallet } from '../helpers/restoreWalletHelper.js';
import { testWallet1 } from '../utils/testWallets.js';

// Issue https://emurgo.atlassian.net/browse/YOEXT-1218
describe('Hide and show balance', function () {
this.timeout(2 * oneMinute);
let webdriver = null;
let logger = null;

before(async function () {
webdriver = await driversPoolsManager.getDriverFromPool();
logger = getTestLogger(this.test.parent.title);
webdriver = await driversPoolsManager.getDriverFromPool();
await prepareWallet(webdriver, logger, 'testWallet1', this);
});
// check the default state. The balance should be displayed
Expand Down Expand Up @@ -57,9 +56,6 @@ describe('Hide and show balance', function () {
await receivePage.selectBaseExtHasBalanceAddrs();
const balanceExtAddrHidden = await receivePage.allAddressesBalancesHidden();
expect(balanceExtAddrHidden, 'Balances of external addresses are not hidden').to.be.true;
await receivePage.selectBaseInterHasBalanceAddrs();
const balanceInterAddrHidden = await receivePage.allAddressesBalancesHidden();
expect(balanceInterAddrHidden, 'Balances of internal addresses are not hidden').to.be.true;
});
// add checking Staking page when testnetwork is added
// click show balance
Expand Down Expand Up @@ -96,9 +92,6 @@ describe('Hide and show balance', function () {
await receivePage.selectBaseExtHasBalanceAddrs();
const balanceExtAddrHidden = await receivePage.allAddressesBalancesHidden();
expect(balanceExtAddrHidden, 'Balances of external addresses are hidden').to.be.false;
await receivePage.selectBaseInterHasBalanceAddrs();
const balanceInterAddrHidden = await receivePage.allAddressesBalancesHidden();
expect(balanceInterAddrHidden, 'Balances of internal addresses are hidden').to.be.false;
});
// add checking Staking page when testnetwork is added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ export default class NavWalletDetailsRevamp extends Component<Props> {
backgroundColor: 'ds.primary_500',
}}
color="primary"
id={amountDisplayId + '-showHideBalance-button'}
>
{shouldHideBalance ? (
<IconWrapper>
Expand Down

0 comments on commit e266935

Please sign in to comment.