import React from 'react';
import { render } from '@testing-library/react';
import Logo from './Logo';
describe('', () => {
it('renders the component with default props', () => {
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
it('renders the component with props', () => {
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
});