diff --git a/cypress/e2e/happypath/recovery_hp_1.cy.js b/cypress/e2e/happypath/recovery_hp_1.cy.js index bb036e11fc..e542eead30 100644 --- a/cypress/e2e/happypath/recovery_hp_1.cy.js +++ b/cypress/e2e/happypath/recovery_hp_1.cy.js @@ -34,13 +34,7 @@ describe('Recovery happy path tests 1', () => { recovery.clickOnNextBtn() tx.executeFlow_1() recovery.verifyRecovererAdded([constants.SEPOLIA_OWNER_2_SHORT]) - recovery.clearRecoverers() - - // recovery.removeRecoverer(0, constants.SEPOLIA_OWNER_2) - // recovery.clickOnNextBtn() - // tx.executeFlow_1() - recovery.getSetupRecoveryBtn() }) }) diff --git a/cypress/e2e/pages/nfts.pages.js b/cypress/e2e/pages/nfts.pages.js index dcd566f383..84b51313f4 100644 --- a/cypress/e2e/pages/nfts.pages.js +++ b/cypress/e2e/pages/nfts.pages.js @@ -22,7 +22,7 @@ const txDetailsSummary = '[data-testid="decoded-tx-summary"]' const txAccordionDetails = '[data-testid="decoded-tx-details"]' const accordionActionItem = '[data-testid="action-item"]' -const noneNFTSelected = '0 NFTs selected' +const noneNFTSelected = /0 NFT[s]? selected/ const sendNFTStr = 'Send NFTs' const recipientAddressStr = 'Recipient address or ENS' const selectedNFTStr = 'Selected NFTs' diff --git a/cypress/e2e/pages/recovery.pages.js b/cypress/e2e/pages/recovery.pages.js index 9c84ea3fcc..4734e22da2 100644 --- a/cypress/e2e/pages/recovery.pages.js +++ b/cypress/e2e/pages/recovery.pages.js @@ -101,7 +101,6 @@ export function getSetupRecoveryBtn() { export function clickOnSetupRecoveryBtn() { getSetupRecoveryBtn().click() - cy.get(setupRecoveryModalBtn).should('be.visible') } export function clickOnSetupRecoveryModalBtn() { diff --git a/cypress/e2e/pages/sidebar.pages.js b/cypress/e2e/pages/sidebar.pages.js index a2bd1c0ad7..481e9bc923 100644 --- a/cypress/e2e/pages/sidebar.pages.js +++ b/cypress/e2e/pages/sidebar.pages.js @@ -349,7 +349,7 @@ export function checkSafeGroupBalance(index) { .find(groupBalance) .invoke('text') .should('include', '$') - .and('match', /\d+\.\d{2}/) + .and('match', /\$?\s?\d+(\.\d{1,3})?/) } export function checkSafeGroupAddress(index, address) {