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

import StockGrid from './stock-grid';

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