fleet/frontend/components/forms/fields/Checkbox/Checkbox.tests.jsx

12 lines
243 B
React
Raw Normal View History

2016-12-01 18:57:19 +00:00
import React from 'react';
import expect from 'expect';
import { mount } from 'enzyme';
import Checkbox from './Checkbox';
describe('Checkbox - component', () => {
it('renders', () => {
expect(mount(<Checkbox />)).toExist();
});
});