Returns a CheerioWrapper around the rendered HTML of the current node's subtree.
Note: can only be called on a wrapper of a single node.
CheerioWrapper
: The resulting Cheerio object
function Foo() {
return (<div className="in-foo" />);
}
function Bar() {
return (
<div className="in-bar">
<Foo />
</div>
);
}
const wrapper = shallow(<Bar />);
expect(wrapper.find('.in-foo')).to.have.length(0);
expect(wrapper.find(Foo).render().find('.in-foo')).to.have.length(1);