import { render, screen } from '@testing-library/react-native'
import { App } from 'src/App'
describe('App', () => {
it('should mount without errors', () => {
expect(() => render()).not.toThrow()
})
it('should unmount without errors', () => {
render()
expect(() => screen.unmount()).not.toThrow()
})
})