nexxtway/react-rainbow

View on GitHub
src/components/Column/__test__/column.spec.js

Summary

Maintainability
A
1 hr
Test Coverage
import React from 'react';
import { mount } from 'enzyme';
import Column from '..';

describe('<Column />', () => {
    it('should return a div element', () => {
        const component = mount(<Column />);
        expect(component.find('div').exists()).toBe(true);
    });
});