如何在Jest中找到子元素?

时间:2018-12-10 16:06:33

标签: reactjs jestjs children

我有一张这样的桌子:

<table data-test='container-component-table'>
  <tr data-test='container-component-table-column-names'>
    <th>Firstname</th>
    <th>Lastname</th> 
    <th>Age</th>
  </tr>
</table>

我试图通过写

来获取container-component-table-column-names的孩子
  

expect(wrapper.find('容器组件表列名称').children()。length).toBe(3)

但是它不起作用。它发现零个子元素。有人知道为什么吗?

0 个答案:

没有答案