You’re browsing the documentation for Vue Test Utils for Vue v2.x and earlier.
To read docs for Vue Test Utils for Vue 3, click here.
isEmpty
废弃警告
isEmpty
已经被废弃并会在未来的发布中被移除。
可以考虑一个诸如 jest-dom 中提供的自定义匹配。
当使用 findComponent
时,可以通过 findComponent(Comp).element
访问其 DOM 元素。
断言 WrapperArray
的每个 Wrapper
都不包含子节点。
返回值:
{boolean}
示例:
import { mount } from '@vue/test-utils'
import Foo from './Foo.vue'
const wrapper = mount(Foo)
const divArray = wrapper.findAll('div')
expect(divArray.isEmpty()).toBe(true)