describe('when x', () => { it('check if child renders', () => { const wrapper = shallow(<Parent />); expect(wrapper.find(ChildComponentName).length).toEqual(1); }); });