import React from 'react';
import { Checkbox } from './checkbox';
import { render } from '@testing-library/react-native';

describe('Checkbox', () => {
  it('should render correctly', () => {
    const { getByText } = render(<Checkbox>Test Checkbox</Checkbox>);
    expect(getByText('Test Checkbox')).toBeTruthy();
  });
});
