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

import ProjectsReportPages from './projects-report-pages';

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