Мой родительский компонент отображает компонент <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>
);
}
}