Works just like find but will throw an error if nothing matching
the given selector is found. You should use find
when searching for an element
that may not exist. You should use this method when getting an element that should
exist and it will provide a nice error message if that is not the case.
import { mount } from '@vue/test-utils'
const wrapper = mount(Foo)
expect(() => wrapper.get('.does-not-exist'))
.to.throw()
.with.property(
'message',
'Unable to find .does-not-exist within: <div>the actual DOM here...</div>'
)