checkbox.spec.jsx 313 B

12345678910111213
  1. import React from 'react';
  2. import {mountWithTheme} from 'sentry-test/enzyme';
  3. import Checkbox from 'app/components/checkbox';
  4. describe('Checkbox', function () {
  5. it('renders', function () {
  6. const component = mountWithTheme(<Checkbox onChange={() => {}} />);
  7. expect(component).toSnapshot();
  8. });
  9. });