mirror of
https://github.com/fleetdm/fleet
synced 2026-05-16 13:38:43 +00:00
11 lines
243 B
JavaScript
11 lines
243 B
JavaScript
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();
|
|
});
|
|
});
|