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.
name
废弃警告
name
已经被废弃并会在未来的发布中被移除。
如果 Wrapper
包含一个 Vue 实例则返回组件名,否则返回 Wrapper
DOM 节点的标签名。
返回值:
{string}
示例:
import { mount } from '@vue/test-utils'
import Foo from './Foo.vue'
const wrapper = mount(Foo)
expect(wrapper.name()).toBe('Foo')
const p = wrapper.find('p')
expect(p.name()).toBe('p')