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

import EmployeewiseAttendanceReportPages from './employeewise-attendance-report-pages';

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