import React from 'react';
import { render } from '@testing-library/react';
import GrnReportGrid from './grn-report-grid';

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