UNPKG

@hc.ds/mobile

Version:
12 lines 407 B
import React from 'react'; import { Checkbox } from './checkbox'; import { render } from '@testing-library/react-native'; describe('Checkbox', () => { it('should render correctly', () => { const { getByText } = render( /*#__PURE__*/React.createElement(Checkbox, null, "Test Checkbox")); expect(getByText('Test Checkbox')).toBeTruthy(); }); }); //# sourceMappingURL=checkbox.spec.js.map