import React from 'react' import { render } from '@testing-library/react-native' import { Send } from '..' describe('Send', () => { it('should not render and compare with snapshot', () => { const { toJSON } = render() expect(toJSON()).toMatchSnapshot() }) it('should always render and compare with snapshot', () => { const { toJSON } = render() expect(toJSON()).toMatchSnapshot() }) it('should render where there is input and compare with snapshot', () => { const { toJSON } = render() expect(toJSON()).toMatchSnapshot() }) })