@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
12 lines • 386 B
JavaScript
import React from 'react';
import { Radio } from './radio';
import { render } from '@testing-library/react-native';
describe('Radio', () => {
it('should render correctly', () => {
const {
getByText
} = render( /*#__PURE__*/React.createElement(Radio, null, "Test Radio"));
expect(getByText('Test Radio')).toBeTruthy();
});
});
//# sourceMappingURL=radio.spec.js.map