diff --git a/cypress/e2e/regression/replace_owner.cy.js b/cypress/e2e/regression/replace_owner.cy.js index 28ed60689d..3e48c78bb2 100644 --- a/cypress/e2e/regression/replace_owner.cy.js +++ b/cypress/e2e/regression/replace_owner.cy.js @@ -34,7 +34,7 @@ describe('Replace Owners tests', () => { it('Verify max characters in name field', () => { wallet.connectSigner(signer) owner.waitForConnectionStatus() - owner.openReplaceOwnerWindow() + owner.openReplaceOwnerWindow(0) owner.typeOwnerName(main.generateRandomString(51)) owner.verifyErrorMsgInvalidAddress(constants.addressBookErrrMsg.exceedChars) }) @@ -44,7 +44,7 @@ describe('Replace Owners tests', () => { cy.visit(constants.setupUrl + staticSafes.SEP_STATIC_SAFE_4) wallet.connectSigner(signer) owner.waitForConnectionStatus() - owner.openReplaceOwnerWindow() + owner.openReplaceOwnerWindow(0) owner.typeOwnerAddress(constants.addresBookContacts.user1.address) owner.verifyNewOwnerName(constants.addresBookContacts.user1.name) }) @@ -52,7 +52,7 @@ describe('Replace Owners tests', () => { it('Verify that Name field not mandatory. Verify confirmation for owner replacement is displayed', () => { wallet.connectSigner(signer) owner.waitForConnectionStatus() - owner.openReplaceOwnerWindow() + owner.openReplaceOwnerWindow(0) owner.typeOwnerAddress(constants.SEPOLIA_OWNER_2) owner.clickOnNextBtn() owner.verifyConfirmTransactionWindowDisplayed() @@ -61,7 +61,7 @@ describe('Replace Owners tests', () => { it('Verify relevant error messages are displayed in Address input', () => { wallet.connectSigner(signer) owner.waitForConnectionStatus() - owner.openReplaceOwnerWindow() + owner.openReplaceOwnerWindow(0) owner.typeOwnerAddress(main.generateRandomString(10)) owner.verifyErrorMsgInvalidAddress(constants.addressBookErrrMsg.invalidFormat) diff --git a/cypress/e2e/smoke/messages_offchain.cy.js b/cypress/e2e/smoke/messages_offchain.cy.js index 78839b83b6..f99796563e 100644 --- a/cypress/e2e/smoke/messages_offchain.cy.js +++ b/cypress/e2e/smoke/messages_offchain.cy.js @@ -28,7 +28,8 @@ describe('[SMOKE] Offchain Messages tests', () => { main.acceptCookies() }) - it('[SMOKE] Verify summary for off-chain unsigned messages', () => { + // TODO: Clarify changes + it.skip('[SMOKE] Verify summary for off-chain unsigned messages', () => { createTx.verifySummaryByIndex(0, [ typeMessagesGeneral.sign, typeMessagesGeneral.oneOftwo, @@ -41,7 +42,8 @@ describe('[SMOKE] Offchain Messages tests', () => { ]) }) - it('[SMOKE] Verify summary for off-chain signed messages', () => { + // TODO: Clarify changes + it.skip('[SMOKE] Verify summary for off-chain signed messages', () => { createTx.verifySummaryByIndex(1, [ typeMessagesGeneral.confirmed, typeMessagesGeneral.twoOftwo, @@ -80,7 +82,8 @@ describe('[SMOKE] Offchain Messages tests', () => { main.verifyTextVisibility(values) }) - it('[SMOKE] Verify confirmation window is displayed for unsigned message', () => { + // TODO: Clarify changes + it.skip('[SMOKE] Verify confirmation window is displayed for unsigned message', () => { wallet.connectSigner(signer) messages.clickOnMessageSignBtn(2) msg_confirmation_modal.verifyConfirmationWindowTitle(modal.modalTitiles.confirmMsg) diff --git a/cypress/e2e/smoke/replace_owner.cy.js b/cypress/e2e/smoke/replace_owner.cy.js index ca931b8956..b52be981a5 100644 --- a/cypress/e2e/smoke/replace_owner.cy.js +++ b/cypress/e2e/smoke/replace_owner.cy.js @@ -33,6 +33,6 @@ describe('[SMOKE] Replace Owners tests', () => { it('[SMOKE] Verify that the owner replacement form is opened', () => { wallet.connectSigner(signer) owner.waitForConnectionStatus() - owner.openReplaceOwnerWindow() + owner.openReplaceOwnerWindow(0) }) }) diff --git a/cypress/fixtures/txmessages_data.json b/cypress/fixtures/txmessages_data.json index fdd609947c..71816eddfb 100644 --- a/cypress/fixtures/txmessages_data.json +++ b/cypress/fixtures/txmessages_data.json @@ -3,6 +3,7 @@ "general": { "confirmed": "Confirmed", "sign": "Sign", + "zeroOftwo": "0 out of 2", "oneOftwo": "1 out of 2", "twoOftwo": "2 out of 2" },