Skip to content

Latest commit

 

History

History
26 lines (13 loc) · 497 Bytes

get.md

File metadata and controls

26 lines (13 loc) · 497 Bytes

.get(index) => ReactElement

Returns the node at a given index of the current wrapper.

Arguments

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

Returns

ReactElement: The retrieved node.

Examples

const wrapper = shallow(<MyComponent />);
expect(wrapper.find(Foo).get(0).props.foo).to.equal('bar');

Related Methods