Skip to content

Commit

Permalink
fix: fixing intentional error added to test actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jvJUCA committed Jun 3, 2024
1 parent ef6f5b9 commit 28059d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/unit/SignIn.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ describe('SignIn', () => {
return Promise.resolve()
})

const emailInput = screen.getByLabelText(/E-mailXXXX)
const emailInput = screen.getByLabelText(/E-mail/i)
await fireEvent.update(emailInput, 'valid-email')
const passwordInput = screen.getByLabelText(/Password/i, { selector: 'input' })
await fireEvent.update(passwordInput, 'valid-password')
Expand Down

0 comments on commit 28059d7

Please sign in to comment.