-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathjest.config.js
72 lines (68 loc) · 2.8 KB
/
jest.config.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
* External dependencies
*/
const glob = require( 'glob' ).sync;
const defaultPlatform = 'android';
const rnPlatform = process.env.TEST_RN_PLATFORM || defaultPlatform;
if ( process.env.TEST_RN_PLATFORM ) {
// eslint-disable-next-line no-console
console.log( 'Setting RN platform to: ' + process.env.TEST_RN_PLATFORM );
} else {
// eslint-disable-next-line no-console
console.log( 'Setting RN platform to: default (' + defaultPlatform + ')' );
}
const configPath = 'gutenberg/test/native';
const transpiledPackages = glob(
'gutenberg/packages/*{/src,}/index.js'
).reduce( ( mapper, modulePath ) => {
const moduleName = modulePath.split( '/' )[ 2 ];
if ( ! mapper[ `@wordpress/${ moduleName }` ] ) {
mapper[ `@wordpress/${ moduleName }` ] =
'<rootDir>/' + modulePath.replace( /\/index\.js$/, '' );
}
return mapper;
}, {} );
module.exports = {
verbose: true,
rootDir: '.',
// Automatically clear mock calls and instances between every test
clearMocks: true,
preset: './gutenberg/node_modules/react-native/jest-preset.js',
setupFiles: [ '<rootDir>/' + configPath + '/setup.js' ],
testEnvironment: 'jsdom',
testMatch: [ '<rootDir>/src/**/test/*.[jt]s?(x)' ],
testPathIgnorePatterns: [
'/node_modules/',
'<rootDir>/gutenberg/',
'<rootDir>/jetpack/',
'/__device-tests__/',
],
testURL: 'http://localhost/',
// Add the `Libraries/Utilities` subfolder to the module directories, otherwise haste/jest doesn't find Platform.js on Travis,
// and add it first so https://github.com/facebook/react-native/blob/v0.60.0/Libraries/react-native/react-native-implementation.js#L324-L326 doesn't pick up the Platform npm module.
moduleDirectories: [
'./gutenberg/node_modules/react-native/Libraries/Utilities',
'./gutenberg/node_modules',
'./node_modules',
],
moduleNameMapper: {
// Mock the CSS modules. See https://facebook.github.io/jest/docs/en/webpack.html#handling-static-assets
'\\.(scss)$': '<rootDir>/' + configPath + '/__mocks__/styleMock.js',
'\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
'<rootDir>/' + configPath + '/__mocks__/fileMock.js',
...transpiledPackages,
},
haste: {
defaultPlatform: rnPlatform,
platforms: [ 'android', 'ios', 'native' ],
providesModuleNodeModules: [ 'react-native', 'react-native-svg' ],
},
transformIgnorePatterns: [
// This is required for now to have jest transform some of our modules
// See: https://github.com/wordpress-mobile/gutenberg-mobile/pull/257#discussion_r234978268
// There is no overloading in jest so we need to rewrite the config from react-native-jest-preset:
// https://github.com/facebook/react-native/blob/master/jest-preset.json#L20
'node_modules/(?!(simple-html-tokenizer|@react-native-community|(jest-)?react-native|react-clone-referenced-element))',
],
reporters: [ 'default', 'jest-junit' ],
};