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

import VariantOperationsForm from './variant-operations-form';

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