要测试的组件。this.props.children 有 example.js 的子组件
class Example extends component {
constructor(){
super(props);
this.state={};
}
render() {
<div>{this.props.children}</div>
}
}
测试用例
it("should render Example with children", () => {
const wrapper = shallow(<Example {...props} />);
expect(wrapper.find("div").text()).toBe(""); //
});
如何测试通过的子组件?
谢谢。