removed invalid test case

This commit is contained in:
Ulf Gebhardt 2019-05-09 14:43:56 +02:00
parent 4a9514c5fb
commit 4fef755caf
No known key found for this signature in database
GPG Key ID: 44C888923CC8E7F3

View File

@ -140,7 +140,8 @@ describe('ChangePassword.vue', () => {
})
})
describe('mutation rejects', () => {
// TODO This is not a valid testcase - we have to decide if we catch the same password on clientside
/* describe('mutation rejects', () => {
beforeEach(async () => {
await wrapper.find('input#oldPassword').setValue('supersecret')
await wrapper.find('input#newPassword').setValue('supersecret')
@ -153,7 +154,7 @@ describe('ChangePassword.vue', () => {
expect(mocks.$toast.error).toHaveBeenCalledWith('Ouch!')
})
})
}) */
})
})
})