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

import ItemDamageReasonsForm from './item-damage-reasons-form';

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