Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 833 Bytes

some.md

File metadata and controls

37 lines (23 loc) · 833 Bytes

.some(selector) => Boolean

Returns whether or not any of the nodes in the wrapper match the provided selector.

Arguments

  1. 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 = shallow(
  <div>
    <div className="foo qoo" />
    <div className="foo boo" />
    <div className="foo hoo" />
  </div>
);
expect(wrapper.find('.foo').some('.qoo')).to.be.true;
expect(wrapper.find('.foo').some('.foo')).to.be.true;
expect(wrapper.find('.foo').some('.bar')).to.be.false;

Related Methods