UNPKG

@hc.ds/mobile

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