import * as React from 'react'; import { render } from '@testing-library/react'; import { AboutModalBox } from '../AboutModalBox'; test('AboutModalBox Test', () => { const { asFragment } = render( This is a AboutModalBox ); expect(asFragment()).toMatchSnapshot(); });