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

import Designation from './designation';

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