Returns a new wrapper with only host nodes.
ReactWrapper
: A new wrapper that wraps the filtered nodes.
const wrapper = mount(<div><MyComponent className="foo" /><div className="foo" /></div>);
expect(wrapper.find('.foo').hostNodes()).to.have.length(1);