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

import SuppliersGrid from './suppliers-grid';

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