Cleaning up back copy-paste job

This commit is contained in:
Jeff Avallone 2018-02-15 17:23:15 -05:00
parent eb384831fe
commit 927718832b
2 changed files with 2 additions and 6 deletions

View File

@ -6,9 +6,7 @@ import { Footer } from 'components/Footer';
describe('Footer', () => {
test('rendering', () => {
const component = shallow(
<Footer>
<p>Content</p>
</Footer>
<Footer/>
);
expect(component).toMatchSnapshot();
});

View File

@ -19,9 +19,7 @@ describe('Header', () => {
test('rendering', () => {
const component = shallow(
<Header>
<p>Content</p>
</Header>
<Header/>
);
expect(component).toMatchSnapshot();
});