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

import SubPlantValAdditionsReport from './sub-plant-val-additions-report';

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