Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 631 Bytes

childAt.md

File metadata and controls

28 lines (16 loc) · 631 Bytes

.childAt(index) => ShallowWrapper

Returns a new wrapper with child at the specified index.

Arguments

  1. index (number): A zero-based integer indicating which node to retrieve.

Returns

ShallowWrapper: A new wrapper that wraps the resulting node.

Examples

const wrapper = shallow(<ToDoList items={items} />);
expect(wrapper.find('ul').childAt(0).type()).to.equal('li');

Related Methods