Returns whether or not all of the nodes in the wrapper match the provided selector.
selector
(EnzymeSelector
): The selector to match.Boolean
: True if every node in the current wrapper matched the provided selector.
const wrapper = mount(( <div> <div className="foo qoo" /> <div className="foo boo" /> <div className="foo hoo" /> </div> )); expect(wrapper.find('.foo').every('.foo')).to.equal(true); expect(wrapper.find('.foo').every('.qoo')).to.equal(false); expect(wrapper.find('.foo').every('.bar')).to.equal(false);
© 2015 Airbnb, Inc.
Licensed under the MIT License.
https://airbnb.io/enzyme/docs/api/ReactWrapper/every.html