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

import EducationGrid from './education-grid';

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