0

零件:

<template>
  <MyComponent>
    <div class="in-slot">Hello world</div>
  </MyComponent>
</template>

如何访问 div.in-slot 并测试他的文本?

4

1 回答 1

1

如果我们假设您在测试文件中将父组件作为 MyParentComponent 导入,则应该可以:

const wrapper = mount(MyParentComponent, {options})
expect(wrapper.find('.in-slot').text()).toBe('Hello world')
于 2018-08-24T12:51:36.077 回答