Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
reinink committed Oct 25, 2023
1 parent 0ab5d58 commit 3e08b36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vue2/tests/cypress/integration/remember.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ describe('Remember (local state caching)', () => {
cy.get('#remember').should('be.checked')
cy.get('#untracked').should('have.value', 'C') // Unchanged from above
cy.get('.name_error').should('not.exist')
cy.get('.handle_error').should('have.text', 'The Handle was invalid')
cy.get('.handle_error').should('not.exist')
cy.get('.remember_error').should('not.exist')

cy.get('.link').click()
Expand All @@ -287,7 +287,7 @@ describe('Remember (local state caching)', () => {
cy.get('#remember').should('be.checked')
cy.get('#untracked').should('not.have.value', 'C') // Untracked, so now reset (page state was lost)
cy.get('.name_error').should('not.exist')
cy.get('.handle_error').should('have.text', 'The Handle was invalid')
cy.get('.handle_error').should('not.exist')
cy.get('.remember_error').should('not.exist')
})
})
Expand Down

0 comments on commit 3e08b36

Please sign in to comment.