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

import InsuranceForm from './insurance-form';

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