mirror of
https://github.com/Jellify-Music/App.git
synced 2026-04-29 06:59:30 -05:00
5ca00df6f7
run prettier
18 lines
358 B
TypeScript
18 lines
358 B
TypeScript
/**
|
|
* @format
|
|
*/
|
|
|
|
import 'react-native'
|
|
import React from 'react'
|
|
import App from '../App'
|
|
|
|
// Note: import explicitly to use the types shipped with jest.
|
|
import { it } from '@jest/globals'
|
|
|
|
// Note: test renderer must be required after react-native.
|
|
import renderer from 'react-test-renderer'
|
|
|
|
it('renders correctly', () => {
|
|
renderer.create(<App />)
|
|
})
|