pleroma/app/soapbox/components/ui/column/__tests__/column.test.js

14 lines
336 B
JavaScript
Raw Normal View History

import React from 'react';
2022-03-21 11:09:01 -07:00
import { createComponent } from 'soapbox/test_helpers';
import Column from '../column';
describe('<Column />', () => {
it('renders correctly with minimal props', () => {
2022-03-21 11:09:01 -07:00
const component = createComponent(<Column />);
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
});