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

import ProjectMappingPages from './project-mapping-pages';

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