Wrapper
か WrapperArray
が存在するか検証します。
Wrapper
か WrapperArray
が空だった場合は false を返します。
-
戻り値:
{boolean}
-
例:
import { mount } from '@vue/test-utils'
import Foo from './Foo.vue'
const wrapper = mount(Foo)
expect(wrapper.exists()).toBe(true)
expect(wrapper.find('does-not-exist').exists()).toBe(false)
expect(wrapper.findAll('div').exists()).toBe(true)
expect(wrapper.findAll('does-not-exist').exists()).toBe(false)