import React from 'react';
import { mount } from 'enzyme';
import Label from './Label';
describe(' component', () => {
const props = {
text: 'test',
};
test('should render the component in default state', () => {
const wrapper = mount();
expect(wrapper.html()).toMatchSnapshot();
});
});