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

import ReportSubPlantOperations from './report-sub-plant-operations';

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