import React from 'react';
import Footer from '../Footer';
import renderer from 'react-test-renderer';
test('Footer renders correctly with and without sponsors', () => {
const footer = renderer.create(
);
let footerTree = footer.toJSON();
expect(footerTree).toMatchSnapshot();
const sponsoredFooter = renderer.create(
);
footerTree = sponsoredFooter.toJSON();
expect(footerTree).toMatchSnapshot();
});