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

import ValAdditionSoakingGrid from './val-addition-soaking-grid';

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