Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 363 Bytes

key.md

File metadata and controls

18 lines (13 loc) · 363 Bytes

.key() => String

Returns the key value for the node of the current wrapper.

NOTE: can only be called on a wrapper of a single node.

Example

const wrapper = shallow((
  <ul>
    {['foo', 'bar'].map(s => <li key={s}>{s}</li>)}
  </ul>
)).find('li');
expect(wrapper.at(0).key()).to.equal('foo');
expect(wrapper.at(1).key()).to.equal('bar');