describe('<InputCheckbox/>', () => {
    it('should set an id in the input element', () => {
        const component = mount(<InputCheckbox />);
        expect(component.find('input').prop('id')).toMatch(/input/);
    });