如何在酶的功能内测试出借?

时间:2019-06-11 07:09:32

标签: javascript testing components enzyme

我有reactjs组件,其渲染功能如下:

 render(){
 return (
  <ValleyContext.Consumer>
    {() => (<div>...</div>)}
  </ValleyContext.Consumer>
 )};

当我尝试使用这种酶来测试ValleyContext的内部

const wrapper=shallow(<AMSRecent />, {context: {valley}});
console.log(wrapper.childAt(0));

结果是:

[function]

我想获得

的结构
<div>...</div>

不仅仅是功能。 我应该如何获得租借的内部结构?

0 个答案:

没有答案