import React from 'react';
import { render } from '@testing-library/react';
import {QuantityDeviationReport} from './quantity-deviation-report'

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