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

import PagesMasterMasterComponentsPlantOperationCapacityGrid from './plant-operation-capacity-grid';

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