enzyme
Version:
JavaScript Testing utilities for React
31 lines (15 loc) • 641 B
Markdown
Returns a new wrapper with only the nodes of the current wrapper that, when passed into the
provided predicate function, return true.
1. `predicate` (`ReactWrapper => Boolean`): A predicate function that is passed a wrapped node.
`ReactWrapper`: A new wrapper that wraps the filtered nodes.
```jsx
const wrapper = mount(<MyComponent />);
const complexFoo = wrapper.find('.foo').filterWhere(n => typeof n.type() !== 'string');
expect(complexComponents).to.have.length(4);
```
- [`.filter(selector) => ReactWrapper`](filter.md)