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

14 lines
359 B
JavaScript
Raw Normal View History

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