import { render } from '@testing-library/react'; import { Accordion, AccordionSummary } from '..'; describe('Accordion', () => { test('should render successfully', () => { const { getByTestId } = render( Test ); expect(getByTestId('test')).toBeTruthy(); }); });