Back to Enzyme

`.closest(selector) => ReactWrapper`

docs/api/ReactWrapper/closest.md

2.9.1705 B
Original Source

.closest(selector) => ReactWrapper

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.

Arguments

  1. selector (EnzymeSelector): The selector to match.

Returns

ReactWrapper: A new wrapper that wraps the resulting node.

Examples

jsx
const wrapper = mount(<MyComponent />);
expect(wrapper.find(Foo).closest('.bar')).to.have.lengthOf(1);

Related Methods