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

import ReprocessingRepackingGrid from './reprocessing-repacking-grid';

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