import React from 'react';
import { render, screen } from '@testing-library/react';
import '@testing-library/jest-dom';
import Container from './Container';

describe('<Container />', () => {
  test('it should mount', () => {
    render(<Container />);

    const container = screen.getByTestId('Container');

    expect(container).toBeInTheDocument();
  });
});
