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

import VariantOperationsGrid from './variant-operations-grid';

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