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

import {AlertMessages} from './alert-messages';

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