kopia lustrzana https://gitlab.com/soapbox-pub/soapbox
42 wiersze
1.1 KiB
JavaScript
42 wiersze
1.1 KiB
JavaScript
module.exports = {
|
|
'projects': [
|
|
'<rootDir>/app/soapbox',
|
|
],
|
|
'testPathIgnorePatterns': [
|
|
'<rootDir>/node_modules/',
|
|
'<rootDir>/vendor/',
|
|
'<rootDir>/config/',
|
|
'<rootDir>/log/',
|
|
'<rootDir>/static/',
|
|
'<rootDir>/tmp/',
|
|
'<rootDir>/webpack/',
|
|
],
|
|
'setupFiles': [
|
|
'raf/polyfill',
|
|
],
|
|
'setupFilesAfterEnv': [
|
|
'<rootDir>/app/soapbox/test_setup.js',
|
|
],
|
|
'collectCoverageFrom': [
|
|
'app/soapbox/**/*.js',
|
|
'!app/soapbox/features/emoji/emoji_compressed.js',
|
|
'!app/soapbox/locales/locale-data/*.js',
|
|
'!app/soapbox/service_worker/entry.js',
|
|
'!app/soapbox/test_setup.js',
|
|
'!app/soapbox/test_helpers.js',
|
|
],
|
|
'coverageDirectory': '<rootDir>/coverage',
|
|
'moduleDirectories': [
|
|
'<rootDir>/node_modules',
|
|
'<rootDir>/app',
|
|
],
|
|
'testEnvironment': 'jsdom',
|
|
'moduleNameMapper': {
|
|
'^.+.(css|styl|less|sass|scss|png|jpg|svg|ttf|woff|woff2)$': 'jest-transform-stub',
|
|
},
|
|
'transform': {
|
|
'\\.[jt]sx?$': 'babel-jest',
|
|
'.+\\.(css|styl|less|sass|scss|png|jpg|svg|ttf|woff|woff2)$': 'jest-transform-stub',
|
|
},
|
|
};
|