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

import EmployeewiseReportGrid from './employeewise-report-grid';

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