Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 338 Bytes

key.md

File metadata and controls

16 lines (12 loc) · 338 Bytes

.key() => String

Returns the key value for the node of the current wrapper. It must be a single-node wrapper.

Example

const wrapper = mount((
  <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');