Files
App/jest/setup/setup.ts
T
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

45 lines
785 B
TypeScript

jest.mock('../../src/api/info', () => {
return {
JellyfinInfo: {
clientInfo: {
name: 'Jellify',
version: '0.0.1',
},
deviceInfo: {
name: 'iPhone 12',
id: '1234567890',
},
createApi: jest.fn(),
},
}
})
jest.mock('react-native-ota-hot-update', () => {
return {
git: {
checkForGitUpdate: jest.fn(),
},
resetApp: jest.fn(),
}
})
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter')
jest.mock('react-native-haptic-feedback', () => {
return {
trigger: jest.fn(),
}
})
jest.mock('react-native/Libraries/Components/RefreshControl/RefreshControl', () => ({
__esModule: true,
default: require('./refresh-control'),
}))
jest.mock('react-native-toast-message', () => {
return {
show: jest.fn(),
hide: jest.fn(),
}
})