bigbuffet-rw/app/soapbox/components/__tests__/column_back_button-test.js

12 lines
357 B
JavaScript
Raw Normal View History

import React from 'react';
import ColumnBackButton from '../column_back_button';
2020-06-09 20:14:48 -07:00
import { createComponent } from 'soapbox/test_helpers';
describe('<ColumnBackButton />', () => {
it('renders correctly', () => {
2020-06-09 20:14:48 -07:00
const component = createComponent(<ColumnBackButton />);
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
});