-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjestSetup.js
39 lines (26 loc) · 967 Bytes
/
jestSetup.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/**
* @see https://react-native-community.github.io/async-storage/docs/advanced/jest
*/
jest.mock('expo-font');
jest.mock('expo-asset');
import 'setimmediate';
//import { enableFetchMocks } from 'jest-fetch-mock'
//enableFetchMocks()
//import mockAsyncStorage from '@react-native-async-storage/async-storage/jest/async-storage-mock';
// jest.mock('@react-native-async-storage/async-storage', () => mockAsyncStorage);
/*
jest.mock('@react-navigation/native/lib/commonjs/useLinking.native', () => ({
default: () => ({getInitialState: {then: jest.fn()}}),
__esModule: true,
}));
*/
/*
jest.mock('react-native/Libraries/Animated/NativeAnimatedHelper');
jest.mock('react-native-reanimated', () => {
const Reanimated = require('react-native-reanimated/mock');
// The mock for `call` immediately calls the callback which is incorrect
// So we override it with a no-op
Reanimated.default.call = () => {};
return Reanimated;
});
*/