import React from 'react'; import { render } from '@testing-library/react'; import { ProfilePage } from './ProfilePage'; describe('<ProfilePage />', () => { it('renders without crashing', () => { const wrapper = render(<ProfilePage />); expect(wrapper.queryByTestId('ProfilePage')).toBeTruthy(); }); });