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

import QaQcOperations from './qa-qc-operations';

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