it('handles onChange', () => {

      const onChange = spy()
      const searchbox = shallow(<Searchbox onChange={ onChange } />)
      searchbox.childAt(1).childAt(0).childAt(0).simulate('change', { target: { value: 'foo' } })