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

import NotifyPartyForm from './notify-party-form';

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