“我的父母”组件基于状态<Child1 />
渲染一个{ conditionMet : true }
组件。
我该如何编写测试来检查子组件本身的呈现,而不是组件中字符串的呈现?我想避免使用setTimeout()
。
这是我如何构建测试的问题吗?或者,我如何构建组件? Jest / Enzyme中是否存在已知的限制或错误,以防止检查子组件是否已渲染?
反应:16.6.3 开玩笑:23.6.0 酵素:3.7.0 酶适配器反应16
ParentComponent
的最佳单元测试:
describe('ParentComponent', () => {
test('renders Child1 component when conditionMet is true', () => {
const parentMount = mount(<ParentComponent />);
const param1 = "expected value";
const param2 = true;
parentMount.instance().checkCondition(param1, param2); // results in Parent's state 'conditionMet' === 'true'
//This is not working - the length of the Child1 component is always 0
expect(parentMount.find(Child1)).toHaveLength(1);
//This alternate option passes, but it's not testing the rendering of the component!
expect(parentMount.text()).toMatch('Expected string renders from Child1');
});
});
ParentComponent.js
class ParentComponent extends Component {
constructor(props) {
super(props);
this.state = {
conditionMet: false
};
}
checkCondition = (param1, param2) => {
if (param1 === 'expected value' && param2 === true)
{
this.setState({conditionMet: true});
} else {
this.setState({conditionMet: false});
}
this.displayChildComponent();
}
};
displayChildComponent() {
if (this.state.conditionMet) {
return(
<Child1 />
)
}
else {
return(
<Child2 />
)
}
}
render() {
return (
<div className="parent-container">
{this.displayChildComponent()}
</div>
);
}
}
答案 0 :(得分:0)
我想这可能是一个很长的解决方案。但这有效。
将道具发送给孩子,这是一个函数,在孩子挂载时调用该函数。
安装为
<Clild1 sendConfirmation={this.receiveConfirmation.bind(this)} />
在父母中:
receiveConfirmation(e, rendered_child){ this.setState({rendered_child}) }
在Child1中:
componentDidMount(){this.props.sendConfirmation(1);}
现在,如果您可以检查父级的状态,则可以始终检查this.state.rendered_child的值。