diff --git a/tests/e2e/specs/metamask-spec.js b/tests/e2e/specs/metamask-spec.js index bf5bd4825..80aebc558 100644 --- a/tests/e2e/specs/metamask-spec.js +++ b/tests/e2e/specs/metamask-spec.js @@ -266,6 +266,7 @@ describe('Metamask', () => { it(`confirmMetamaskTransaction should confirm legacy transaction using default settings`, () => { cy.get('#sendButton').click(); cy.confirmMetamaskTransaction().then(txData => { + expect(txData.recipientPublicAddress).to.be.not.empty; expect(txData.networkName).to.be.not.empty; expect(txData.customNonce).to.be.not.empty; expect(txData.confirmed).to.be.true; @@ -283,6 +284,7 @@ describe('Metamask', () => { it(`confirmMetamaskTransaction should confirm eip-1559 transaction using default settings`, () => { cy.get('#sendEIP1559Button').click(); cy.confirmMetamaskTransaction().then(txData => { + expect(txData.recipientPublicAddress).to.be.not.empty; expect(txData.networkName).to.be.not.empty; expect(txData.customNonce).to.be.not.empty; expect(txData.confirmed).to.be.true; @@ -322,6 +324,7 @@ describe('Metamask', () => { expect(txData.origin).to.be.not.empty; expect(txData.bytes).to.be.not.empty; expect(txData.hexData).to.be.not.empty; + expect(txData.recipientPublicAddress).to.be.not.empty; expect(txData.networkName).to.be.not.empty; expect(txData.customNonce).to.be.not.empty; expect(txData.confirmed).to.be.true;