UNPKG

react-native-template-zygor

Version:

Template para projetos em React Native, com Estrutura de Pastas customizada, Estilos Globais, ESLint + Prettier + Babel Plugin Root Import, React Navigation, Reactotron e Axios configurados.

13 lines (10 loc) 328 B
import React from 'react'; import { render } from '@testing-library/react-native'; import Main from '~/screens/Main'; test('Example of test', () => { const { getByTestId } = render(<Main />) const welcomeText = 'Welcome to basic template!' expect(getByTestId('welcome-text').props.children).toBe( welcomeText ) })