.some(selector) => Boolean
Returns whether or not any of the nodes in the wrapper match the provided selector.
Arguments
-
selector(EnzymeSelector): The selector to match.
Returns
Boolean: True if at least one of the nodes in the current wrapper matched the provided selector.
Examples
const wrapper = mount((
<div>
<div className="foo qoo" />
<div className="foo boo" />
<div className="foo hoo" />
</div>
));
expect(wrapper.find('.foo').some('.qoo')).to.equal(true);
expect(wrapper.find('.foo').some('.foo')).to.equal(true);
expect(wrapper.find('.foo').some('.bar')).to.equal(false);
Related Methods
© 2015 Airbnb, Inc.
Licensed under the MIT License.
https://enzymejs.github.io/enzyme/docs/api/ReactWrapper/some.html