test(`checkbox => <Checkbox .../>`, () => {
    const wrapper = shallow(<FieldShape field={{...field, data_type: 'checkbox'}} />);
    expect(wrapper.find('Checkbox').length).toEqual(1);
  });