Subject of the issue
After upgrading from v1.1.3 to v1.1.4 some tests have started to fail.
Steps to reproduce
const wrapper = mount(MyComponent, {
propsData: {
items: [
{ name: 'woof' },
{ name: 'bork' }
]
}
});
const items = wrapper.findAllComponents({ name: 'MyComponentItem' });
const firstItem = wrapper.at(0);
// ^--- [vue-test-utils]: no item exists at 0
// ...
Expected behaviour
Tests should pass as it was before the upgrade.
Actual behaviour
Tests failed.
Possible Solution
Downgrade to v1.1.3.
Subject of the issue
After upgrading from
v1.1.3tov1.1.4some tests have started to fail.Steps to reproduce
Expected behaviour
Tests should pass as it was before the upgrade.
Actual behaviour
Tests failed.
Possible Solution
Downgrade to
v1.1.3.