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

import LotTrackingReport from './lot-tracking-report';

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