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

import PagesMasterMasterComponentsPlantOperationCapacityForm from './plant-operation-capacity-form';

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