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

import DesignationGrid from './designation-grid';

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