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

import QaQcSampleTestGrid from './qa-qc-sample-test-grid';

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