import React from 'react'; import { render } from '@testing-library/react'; import { AlertActionCloseButton } from '../../AlertActionCloseButton'; import { AlertContext } from '../../AlertContext'; describe('AlertActionCloseButton', () => { it('should match snapshot', () => { const { asFragment } = render( console.log('close clicked')} aria-label="" variantLabel="" /> ); expect(asFragment()).toMatchSnapshot(); }); });