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', () => { describe('Footer', () => {
test('rendering', () => { test('rendering', () => {
const component = shallow( const component = shallow(
<Footer> <Footer/>
<p>Content</p>
</Footer>
); );
expect(component).toMatchSnapshot(); expect(component).toMatchSnapshot();
}); });

View File

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