标签: enzyme
我使用airbnb的酶库进行反应测试,我想只检索当前节点的文本,不包括任何子节点的任何文本。
const component = <div>hello<span>there</span></div>
如果我这样做:
shallow(component).find('div').text() //hellothere
shallow(component).find('span').text() //there
如何获得hello?
hello