123456789101112 |
- import React from 'react';
- import {shallow} from 'sentry-test/enzyme';
- import toJson from 'enzyme-to-json';
- import Checkbox from 'app/components/checkbox';
- describe('Checkbox', function() {
- it('renders', function() {
- const component = shallow(<Checkbox />);
- expect(toJson(component)).toMatchSnapshot();
- });
- });
|