forked from gitpoint/git-point
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testenv.js
46 lines (35 loc) · 1 KB
/
testenv.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
40
41
42
43
44
45
46
import 'react-native';
import 'react-native-mock';
import Enzyme from 'enzyme';
import Adapter from 'enzyme-adapter-react-16';
Enzyme.configure({ adapter: new Adapter() });
console.error = message => {
if (
message.indexOf('uppercase HTML') === -1 &&
message.indexOf('spell it as lowercase') === -1 &&
message.indexOf('cast the value') === -1
) {
console.warn(message);
}
};
jest.mock('react-native-i18n', () => {
const i18njs = require('i18n-js');
const en = require('./src/locale/languages/en');
i18njs.translations = en;
return {
t: jest.fn((k, o) => i18njs.t(k, { locale: 'en' })),
};
});
jest.mock('react-native-communications', () => ({
web: jest.fn(),
email: jest.fn(),
}));
jest.mock('react-native-cookies', () => ({}));
jest.mock('react-native-code-push', () => ({}));
jest.mock('react-native-safari-view', () => ({}));
jest.mock('react-native-linear-gradient', () => ({}));
jest.mock('react-native-device-info', () => {
return {
getModel: jest.fn(),
};
});