import { render, screen } from '../../../../../../tests/utils';
import { Checkbox } from './checkbox';
const doNothing = () => {
// Do nothing
};
describe('Checkbox', () => {
it('renders an unchecked checkbox', () => {
render(
);
expect(screen.getByRole('checkbox')).not.toBeChecked();
});
it('renders a checked checkbox', () => {
render(
);
expect(screen.getByRole('checkbox')).toBeChecked();
});
});