Remove ColumnHeader test

It's not very useful anyway
merge-requests/782/head
Alex Gleason 3 years ago
parent 60c3243fcb
commit 8c1d6ab195
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -1,24 +0,0 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`<ColumnHeader /> renders correctly with minimal props 1`] = `
<div
className="column-header__wrapper"
>
<h1
className="column-header"
>
<div
className="column-header__buttons"
/>
</h1>
<div
className="column-header__collapsible collapsed"
onTransitionEnd={[Function]}
tabIndex={-1}
>
<div
className="column-header__collapsible-inner"
/>
</div>
</div>
`;

@ -1,11 +0,0 @@
import React from 'react';
import ColumnHeader from '../column_header';
import { createComponent } from 'soapbox/test_helpers';
describe('<ColumnHeader />', () => {
it('renders correctly with minimal props', () => {
const component = createComponent(<ColumnHeader />);
const tree = component.toJSON();
expect(tree).toMatchSnapshot();
});
});
Loading…
Cancel
Save