2023-02-16 00:24:35 +00:00
|
|
|
/** @type {import('jest').Config} */
|
|
|
|
const config = {
|
|
|
|
testEnvironment: 'jsdom',
|
|
|
|
testPathIgnorePatterns: [
|
2022-05-04 06:06:49 +01:00
|
|
|
'<rootDir>/node_modules/',
|
|
|
|
'<rootDir>/vendor/',
|
|
|
|
'<rootDir>/config/',
|
|
|
|
'<rootDir>/log/',
|
|
|
|
'<rootDir>/public/',
|
|
|
|
'<rootDir>/tmp/',
|
2022-05-04 18:15:50 +01:00
|
|
|
'<rootDir>/app/javascript/themes/',
|
2022-05-04 06:06:49 +01:00
|
|
|
],
|
2023-02-16 00:24:35 +00:00
|
|
|
setupFilesAfterEnv: ['<rootDir>/app/javascript/mastodon/test_setup.js'],
|
|
|
|
collectCoverageFrom: [
|
2023-04-17 09:12:04 +01:00
|
|
|
'app/javascript/mastodon/**/*.{js,jsx,ts,tsx}',
|
2022-05-04 06:06:49 +01:00
|
|
|
'!app/javascript/mastodon/features/emoji/emoji_compressed.js',
|
|
|
|
'!app/javascript/mastodon/service_worker/entry.js',
|
|
|
|
'!app/javascript/mastodon/test_setup.js',
|
|
|
|
],
|
2023-02-16 00:24:35 +00:00
|
|
|
coverageDirectory: '<rootDir>/coverage',
|
|
|
|
moduleDirectories: ['<rootDir>/node_modules', '<rootDir>/app/javascript'],
|
2022-05-04 06:06:49 +01:00
|
|
|
};
|
2023-02-16 00:24:35 +00:00
|
|
|
|
|
|
|
module.exports = config;
|