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

import ShippingTermsGrid from './shipping-terms-grid';

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