const ASSET_EXTS = 'css|styl|less|sass|scss|png|jpg|svg|ogg|oga|mp3|ttf|woff|woff2'; module.exports = { 'testPathIgnorePatterns': [ '/node_modules/', '/vendor/', '/config/', '/log/', '/static/', '/tmp/', '/webpack/', ], 'setupFiles': [ 'raf/polyfill', ], 'setupFilesAfterEnv': [ '/app/soapbox/jest/test-setup.ts', ], 'collectCoverageFrom': [ 'app/soapbox/**/*.js', 'app/soapbox/**/*.cjs', 'app/soapbox/**/*.mjs', 'app/soapbox/**/*.ts', 'app/soapbox/**/*.tsx', '!app/soapbox/service-worker/entry.ts', '!app/soapbox/jest/test-setup.ts', '!app/soapbox/jest/test-helpers.ts', ], 'coverageDirectory': '/.coverage/', 'coverageReporters': ['html', 'text', 'text-summary', 'cobertura'], 'reporters': ['default', 'jest-junit'], 'moduleDirectories': [ '/node_modules', '/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|blurhash|emoji-mart|.+\\.(${ASSET_EXTS})$))`, // Ignore node_modules, except static assets // `/node_modules/(?!.+\\.(${ASSET_EXTS})$)`, ], 'transform': { '\\.[jt]sx?$': 'babel-jest', [`\\.(${ASSET_EXTS})$`]: '/jest/assetTransformer.cjs', }, };