mirror of
https://github.com/Jellify-Music/App.git
synced 2026-05-24 22:08:56 -05:00
767fa3cbcf
Additions to testing files - including ensuring QueueProvider functionality Fix issue where artists in the favorites wouldn't show up
20 lines
287 B
TypeScript
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(),
|
|
},
|
|
}
|
|
})
|