Returns the props hash for the current node of the wrapper.
NOTE: can only be called on a wrapper of a single node.
const wrapper = shallow(<MyComponent foo={10} />);
expect(wrapper.props().foo).to.equal(10);
Returns the props hash for the current node of the wrapper.
NOTE: can only be called on a wrapper of a single node.
const wrapper = shallow(<MyComponent foo={10} />);
expect(wrapper.props().foo).to.equal(10);