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

import VendorPriceListGrid from './vendor-price-list-grid';

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