import { Footer } from '.';
import { wrapComponentInReduxForTesting } from '../../tests';
import { describe, it, expect } from '@jest/globals';
describe('', () => {
it('should render footer', () => {
const { container } = wrapComponentInReduxForTesting();
expect(container.querySelectorAll('footer a').length).toBeGreaterThan(0);
});
});