Returns a wrapper of the first element that matches the selector by traversing up through the wrapped node's ancestors in the tree, starting with itself. It must be a single-node wrapper.
ReactWrapper
: A new wrapper that wraps the resulting node.
const wrapper = mount(<MyComponent />); expect(wrapper.find(Foo).closest('.bar')).to.have.lengthOf(1);
© 2015 Airbnb, Inc.
Licensed under the MIT License.
https://airbnb.io/enzyme/docs/api/ReactWrapper/closest.html