仅获取当前节点的文本

时间:2017-02-04 01:24:27

标签: enzyme

我使用airbnb的酶库进行反应测试,我想只检索当前节点的文本,不包括任何子节点的任何文本。

  const component = <div>hello<span>there</span></div>

如果我这样做:

  shallow(component).find('div').text()  //hellothere

如果我这样做:

  shallow(component).find('span').text()  //there

如何获得hello

0 个答案:

没有答案