зеркало из https://github.com/mozilla/fxa.git
16 строки
478 B
TypeScript
16 строки
478 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
displayName: 'shared-l10n',
|
|
preset: '../../../jest.preset.js',
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[tj]s$': ['ts-jest', { tsconfig: '<rootDir>/tsconfig.spec.json' }],
|
|
},
|
|
moduleNameMapper: {
|
|
'@fluent/react/esm/localization': '@fluent/react',
|
|
'server-only': `<rootDir>/tests/__mocks__/empty.js`,
|
|
},
|
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
|
coverageDirectory: '../../../coverage/libs/shared/l10n',
|
|
};
|