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

import PdQaqcPrint from './pd-qaqc-print';

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