import { render } from '@testing-library/react'; import { PropsWithChildren } from 'react'; import { Switch, Props } from './Switch'; function renderDefault({ name = 'default name', checked = false, }: Partial> = {}) { return render( {}} /> ); } test('should display a Switch component', async () => { const { findByRole } = renderDefault(); const switchElem = await findByRole('checkbox'); expect(switchElem).toBeTruthy(); });