You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/form-components/SwitchField/Switch.test.tsx

21 lines
537 B

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