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

import InsuranceGrid from './insurance-grid';

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