Skip to content
This repository has been archived by the owner on Mar 26, 2024. It is now read-only.

Latest commit

 

History

History
30 lines (15 loc) · 649 Bytes

filterWhere.md

File metadata and controls

30 lines (15 loc) · 649 Bytes

.filterWhere(fn) => ReactWrapper

Returns a new wrapper with only the nodes of the current wrapper that, when passed into the provided predicate function, return true.

Arguments

  1. predicate (ReactWrapper => Boolean): A predicate function that is passed a wrapped node.

Returns

ReactWrapper: A new wrapper that wraps the filtered nodes.

Example

const wrapper = mount(<MyComponent />);
const complexComponents = wrapper.find('.foo').filterWhere(n => typeof n.type() !== 'string');
expect(complexComponents).to.have.lengthOf(4);

Related Methods