1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Turn off all old notifications (#12500)

* Turn off all old notifications

* Remove unnecessary attempt to close whats new popup in e2e test

* Remove unneeded whats new popup closes in e2e tests

* Lint fix
This commit is contained in:
Dan J Miller 2021-11-01 08:16:05 -02:30 committed by GitHub
parent b058cbed3b
commit db20399d81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 44 deletions

View File

@ -176,24 +176,6 @@ describe('MetaMask', function () {
});
});
describe("Close the what's new popup", function () {
it("should show the what's new popover", async function () {
const popoverTitle = await driver.findElement(
'.popover-header__title h2',
);
assert.equal(await popoverTitle.getText(), "What's new");
});
it("should close the what's new popup", async function () {
const popover = await driver.findElement('.popover-container');
await driver.clickElement('[data-testid="popover-close"]');
await popover.waitForElementState('hidden');
});
});
describe('Import Secret Recovery Phrase', function () {
it('logs out of the vault', async function () {
await driver.clickElement('.account-menu__icon');

View File

@ -27,7 +27,6 @@ describe('Hide token', function () {
css: '.asset-list-item__token-button',
text: '0 TST',
});
await driver.clickElement('.popover-header__button');
let assets = await driver.findElements('.asset-list-item');
assert.equal(assets.length, 2);
@ -39,7 +38,6 @@ describe('Hide token', function () {
await driver.clickElement('[data-testid="asset-options__button"]');
await driver.clickElement('[data-testid="asset-options__hide"]');
// wait for confirm hide modal to be visible
const confirmHideModal = await driver.findVisibleElement('span .modal');

View File

@ -60,11 +60,6 @@ describe('Metamask Import UI', function () {
tag: 'button',
});
// close the what's new popup
const popover = await driver.findElement('.popover-container');
await driver.clickElement('[data-testid="popover-close"]');
await popover.waitForElementState('hidden');
// Show account information
await driver.clickElement(
'[data-testid="account-options-menu-button"]',

View File

@ -65,13 +65,6 @@ describe('Incremental Security', function () {
tag: 'button',
});
// closes the what's new popup
const popover = await driver.findElement('.popover-container');
await driver.clickElement('[data-testid="popover-close"]');
await popover.waitForElementState('hidden');
await driver.clickElement(
'[data-testid="account-options-menu-button"]',
);

View File

@ -2,7 +2,6 @@ import { createSelector } from 'reselect';
import { addHexPrefix } from '../../app/scripts/lib/util';
import {
MAINNET_CHAIN_ID,
BSC_CHAIN_ID,
TEST_CHAINS,
NETWORK_TYPE_RPC,
NATIVE_CURRENCY_TOKEN_IMAGE_MAP,
@ -576,18 +575,15 @@ export function getShowWhatsNewPopup(state) {
* @param {Object} state
* @returns {Object}
*/
function getAllowedNotificationIds(state) {
const currentKeyring = getCurrentKeyring(state);
const currentKeyringIsLedger = currentKeyring?.type === KEYRING_TYPES.LEDGER;
function getAllowedNotificationIds() {
return {
1: true,
2: true,
3: true,
4: getCurrentChainId(state) === BSC_CHAIN_ID,
5: true,
6: currentKeyringIsLedger,
7: currentKeyringIsLedger,
1: false,
2: false,
3: false,
4: false,
5: false,
6: false,
7: false,
};
}