mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
12 lines
243 B
React
12 lines
243 B
React
|
|
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();
|
||
|
|
});
|
||
|
|
});
|