mysticPrg/catch-light

View on GitHub
src/components/neon/CheckBox.test.js

Summary

Maintainability
A
40 mins
Test Coverage
import React from 'react';
import { shallow } from 'enzyme';

import CheckBox from './CheckBox';

describe('CheckBox', () => {
    it('should be render without crash', () => {
        expect(() => {
            shallow(<CheckBox/>);
        }).not.toThrow();
    });
});