Skip to content

Commit

Permalink
test: fix changed message ID (#2013)
Browse files Browse the repository at this point in the history
  • Loading branch information
zepatrik committed Dec 1, 2021
1 parent ee217e9 commit 0bb66de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ context('Account Verification Registration Errors', () => {
cy.get(appPrefix(app) + 'input[name="email"]').should('be.empty')
cy.get('input[name="email"]').type(identity.email)
cy.get('button[value="link"]').click()
cy.get('[data-testid="ui/message/1070001"]').should(
cy.get('[data-testid="ui/message/1080001"]').should(
'contain.text',
'An email containing a verification'
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ context('Account Verification Error', () => {
cy.get('input[name="email"]').type(identity.email)
cy.get('button[value="link"]').click()

cy.get('[data-testid="ui/message/1070001"]').should(
cy.get('[data-testid="ui/message/1080001"]').should(
'contain.text',
'An email containing a verification'
)
Expand All @@ -66,7 +66,7 @@ context('Account Verification Error', () => {
cy.get('input[name="email"]').type(identity.email)
cy.get('button[value="link"]').click()

cy.get('[data-testid="ui/message/1070001"]').should(
cy.get('[data-testid="ui/message/1080001"]').should(
'contain.text',
'An email containing a verification'
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ context('Account Verification Settings Success', () => {
cy.get('input[name="email"]').type(identity.email)
cy.get('button[value="link"]').click()

cy.get('[data-testid="ui/message/1070001"]').should(
cy.get('[data-testid="ui/message/1080001"]').should(
'contain.text',
'An email containing a verification'
)
Expand All @@ -52,7 +52,7 @@ context('Account Verification Settings Success', () => {
cy.get('input[name="email"]').type(email)
cy.get('button[value="link"]').click()

cy.get('[data-testid="ui/message/1070001"]').should(
cy.get('[data-testid="ui/message/1080001"]').should(
'contain.text',
'An email containing a verification'
)
Expand Down

0 comments on commit 0bb66de

Please sign in to comment.