import React from 'react';
import { render } from '@testing-library/react';
import { InquiryForm } from './inquiry-form'

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