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

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

    const table = screen.getByTestId('Table');

    expect(table).toBeInTheDocument();
  });
});
