Skip to content

Latest commit

 

History

History
39 lines (28 loc) · 609 Bytes

render.md

File metadata and controls

39 lines (28 loc) · 609 Bytes

.render() => CheerioWrapper

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.

Returns

String: The resulting HTML string

Examples

class Foo extends React.Component {
  render() {
    return (<div className="in-foo" />);
  }
}
class Bar extends React.Component {
  render() {
    return (
      <div className="in-bar">
        <Foo />
      </div>
    );
  }
}
const wrapper = mount(<Bar />);
expect(wrapper.find(Foo).render().find('.in-foo')).to.have.length(1);