Returns a new wrapper with only the nodes of the current wrapper that, when passed into the provided predicate function, return true.
predicate
(ShallowWrapper => Boolean
): A predicate function that is passed a wrapped node.
ShallowWrapper
: A new wrapper that wraps the filtered nodes.
const wrapper = shallow(<MyComponent />);
const complexFoo = wrapper.find('.foo').filterWhere((n) => typeof n.type() !== 'string');
expect(complexFoo).to.have.lengthOf(4);