You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had the same issue. Here is the fix that I came up with.
it('should have form inputs bound with data model',()=>{
...
fieldUsername.setValue(username)fieldEmailAddress.setValue(emailAddress)fieldPassword.setValue(password)expect(wrapper.vm.form.username).toEqual(username)expect(wrapper.vm.form.emailAddress).toEqual(emailAddress)expect(wrapper.vm.form.password).toEqual(password)})
err.log
Basically all unit tests failed at vue form data bound .
git commit log: 70d9be6
commit msg: implement e2e tests of login and register
The text was updated successfully, but these errors were encountered: