Files
App/jest/contextual/App.test.tsx
Violet Caulfield b958cfe37b clean up jest folder between setup, contextual, and functional files (#451)
Clean up Jest and Maestro Folders

Reduction of the number of calls being made by components

Fix issue where a different track would display than the one that is currently playing

Update OTA dependency to fix an issue on iOS
2025-07-22 09:17:42 -05:00

10 lines
202 B
TypeScript

import 'react-native'
import React from 'react'
import App from '../../App'
import { render } from '@testing-library/react-native'
test(`${App.name} renders successfully`, () => {
render(<App />)
})