import * as React from 'react';
import { render } from '@testing-library/react';
import { AboutModalBoxCloseButton } from '../AboutModalBoxCloseButton';
test('AboutModalBoxCloseButton Test', () => {
const { asFragment } = render();
expect(asFragment()).toMatchSnapshot();
});
test('AboutModalBoxCloseButton Test onclose', () => {
const onClose = jest.fn();
const { asFragment } = render();
expect(asFragment()).toMatchSnapshot();
});
test('AboutModalBoxCloseButton Test close button aria label', () => {
const closeButtonAriaLabel = 'Klose Daylok';
const { asFragment } = render();
expect(asFragment()).toMatchSnapshot();
});