Skip to content

Commit

Permalink
Fix e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
katspaugh committed Aug 21, 2023
1 parent 1c01594 commit c4ac644
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/smoke/tx_history.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ describe('Transaction history', () => {
.last()
.within(() => {
// Type
cy.get('iframe').should('have.attr', 'title', INCOMING)
cy.get('img').should('have.attr', 'alt', INCOMING)
cy.contains('div', 'Received').should('exist')

// Info
Expand Down Expand Up @@ -103,7 +103,7 @@ describe('Transaction history', () => {
.prev()
.within(() => {
// Type
cy.get('iframe').should('have.attr', 'title', OUTGOING)
cy.get('img').should('have.attr', 'alt', OUTGOING)
cy.contains('div', 'Sent').should('exist')

// Info
Expand Down

0 comments on commit c4ac644

Please sign in to comment.