2020-06-09 19:29:50 -07:00
|
|
|
import React from 'react';
|
|
|
|
import renderer from 'react-test-renderer';
|
2022-01-10 14:25:06 -08:00
|
|
|
|
2020-06-09 19:29:50 -07:00
|
|
|
import Column from '../column';
|
|
|
|
|
|
|
|
describe('<Column />', () => {
|
|
|
|
it('renders correctly with minimal props', () => {
|
|
|
|
const component = renderer.create(<Column />);
|
|
|
|
const tree = component.toJSON();
|
|
|
|
expect(tree).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
});
|