remove test for password rules on login

This commit is contained in:
Moriz Wahl 2021-04-21 15:28:15 +02:00
parent 29a718116a
commit f2de1f6c38

View File

@ -93,14 +93,6 @@ describe('Login', () => {
'The Email field must be a valid email',
)
})
it('shows a warning when password is too short', async () => {
wrapper.find('input[placeholder="form.password"]').setValue('1234')
await flushPromises()
await expect(wrapper.find('.invalid-feedback').text()).toEqual(
'The Password field must be at least 6 characters',
)
})
})
// to do: test submit button