我有reactjs组件,其渲染功能如下:
render(){
return (
<ValleyContext.Consumer>
{() => (<div>...</div>)}
</ValleyContext.Consumer>
)};
当我尝试使用这种酶来测试ValleyContext的内部
const wrapper=shallow(<AMSRecent />, {context: {valley}});
console.log(wrapper.childAt(0));
结果是:
[function]
我想获得
的结构<div>...</div>
不仅仅是功能。 我应该如何获得租借的内部结构?