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

import ExitActionForm from './exit-action-form';

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