14 lines
265 B
JavaScript
14 lines
265 B
JavaScript
import React from 'react';
|
|
import { shallow } from 'enzyme';
|
|
|
|
import { Footer } from 'components/Footer';
|
|
|
|
test('Footer rendering', () => {
|
|
const component = shallow(
|
|
<Footer>
|
|
<p>Content</p>
|
|
</Footer>
|
|
);
|
|
expect(component).toMatchSnapshot();
|
|
});
|