import React from 'react';
import { render } from '@testing-library/react';

import Documents from './documents';

describe('Documents', () => {
  it('should render successfully', () => {
    const { baseElement } = render(
      <Documents />
    );
    expect(baseElement).toBeTruthy();
  });
});
