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

import CaptureGrossWeightForm from './capture-gross-weight-form';

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