@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
12 lines • 384 B
JavaScript
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