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

Latest commit

 

History

History
29 lines (16 loc) · 728 Bytes

children.md

File metadata and controls

29 lines (16 loc) · 728 Bytes

.children([selector]) => ReactWrapper

Returns a new wrapper with all of the children of the node(s) in the current wrapper. Optionally, a selector can be provided and it will filter the children by this selector

Arguments

  1. selector (EnzymeSelector [optional]): A selector to filter the children by.

Returns

ReactWrapper: A new wrapper that wraps the resulting nodes.

Examples

const wrapper = mount(<ToDoList items={items} />);
expect(wrapper.find('ul').children()).to.have.lengthOf(items.length);

Related Methods