sforkowany z mirror/soapbox
49 wiersze
1.5 KiB
JavaScript
49 wiersze
1.5 KiB
JavaScript
const ASSET_EXTS = 'css|styl|less|sass|scss|png|jpg|svg|ogg|oga|mp3|ttf|woff|woff2';
|
|
|
|
module.exports = {
|
|
'testPathIgnorePatterns': [
|
|
'<rootDir>/node_modules/',
|
|
'<rootDir>/vendor/',
|
|
'<rootDir>/config/',
|
|
'<rootDir>/log/',
|
|
'<rootDir>/static/',
|
|
'<rootDir>/tmp/',
|
|
'<rootDir>/webpack/',
|
|
],
|
|
'setupFiles': [
|
|
'raf/polyfill',
|
|
],
|
|
'setupFilesAfterEnv': [
|
|
'<rootDir>/app/soapbox/jest/test-setup.ts',
|
|
],
|
|
'collectCoverageFrom': [
|
|
'app/soapbox/**/*.js',
|
|
'app/soapbox/**/*.ts',
|
|
'app/soapbox/**/*.tsx',
|
|
'!app/soapbox/features/emoji/emoji_compressed.js',
|
|
'!app/soapbox/locales/locale-data/*.js',
|
|
'!app/soapbox/service_worker/entry.js',
|
|
'!app/soapbox/jest/test-setup.ts',
|
|
'!app/soapbox/jest/test-helpers.ts',
|
|
],
|
|
'coverageDirectory': '<rootDir>/.coverage/',
|
|
'coverageReporters': ['html', 'text', 'text-summary', 'cobertura'],
|
|
'moduleDirectories': [
|
|
'<rootDir>/node_modules',
|
|
'<rootDir>/app',
|
|
],
|
|
'testMatch': ['**/*/__tests__/**/?(*.|*-)+(test).(ts|js)?(x)'],
|
|
'testEnvironment': 'jsdom',
|
|
'transformIgnorePatterns': [
|
|
// FIXME: react-sticky-box doesn't provide a CJS build, so transform it for now
|
|
// https://github.com/codecks-io/react-sticky-box/issues/79
|
|
`/node_modules/(?!(react-sticky-box|.+\\.(${ASSET_EXTS})))`,
|
|
// Ignore node_modules, except static assets
|
|
// `/node_modules/(?!.+\\.(${ASSET_EXTS}))`,
|
|
],
|
|
'transform': {
|
|
'\\.[jt]sx?$': 'babel-jest',
|
|
[`.+\\.(${ASSET_EXTS})$`]: '<rootDir>/jest/assetTransformer.js',
|
|
},
|
|
};
|