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

import PlantCapacityGrid from './plant-capacity-grid';

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