Skip to content

Commit d2b1f69

Browse files
committed
fix failing test using 3 letters as sorting change
1 parent 49a24e5 commit d2b1f69

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

e2e/integration/journey.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,9 @@ it('requires employee selection', () => {
112112
)
113113
cy.findByRole('button', { name: /submit/i }).click()
114114
cy.findByText(/form is incomplete/i).should('exist')
115-
cy.findByRole('combobox', { name: /who is your employer/i }).type('Ca{enter}')
115+
cy.findByRole('combobox', { name: /who is your employer/i }).type(
116+
'Cap{enter}'
117+
)
116118
cy.findByRole('button', { name: /submit/i }).click()
117119

118120
cy.wait('@createVolunteer').then(({ request: { body: payload } }) => {

0 commit comments

Comments
 (0)