3
私は反応テストにairbnbの酵素ライブラリを使用しています。子ノードのテキストを除いて、現在のノードのテキストのみを取得します。現在のノードのテキストのみを取得する
const component = <div>hello<span>there</span></div>
は私が行う場合:
shallow(component).find('div').text() //hellothere
は私がない場合:
shallow(component).find('span').text() //there
は、どのように私はちょうどhello
を得るのですか?