Files
App/jest/setup.ts
T
Violet Caulfield 767fa3cbcf Unit Testing Additions, Fix Favorites Library (#298)
Additions to testing files - including ensuring QueueProvider functionality

Fix issue where artists in the favorites wouldn't show up
2025-04-28 07:04:31 -05:00

20 lines
287 B
TypeScript

jest.mock('../api/client')
jest.mock('react-native/Libraries/EventEmitter/NativeEventEmitter')
jest.mock('react-native-haptic-feedback', () => {
return {
default: {
trigger: jest.fn(),
},
}
})
jest.mock('burnt', () => {
return {
default: {
alert: jest.fn(),
},
}
})