mirror of https://github.com/tooot-app/app
7 lines
202 B
JavaScript
7 lines
202 B
JavaScript
|
jest.mock('react-native/Libraries/LayoutAnimation/LayoutAnimation', () => ({
|
||
|
...require.requireActual(
|
||
|
'react-native/Libraries/LayoutAnimation/LayoutAnimation'
|
||
|
),
|
||
|
configureNext: jest.fn()
|
||
|
}))
|