18 lines
449 B
JavaScript
18 lines
449 B
JavaScript
module.exports = {
|
|
displayName: 'board',
|
|
preset: '../../jest.preset.js',
|
|
testEnvironment: 'jsdom',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'],
|
|
coverageDirectory: '../../coverage/apps/board',
|
|
testMatch: ['**/*.spec.ts', '**/*.spec.tsx'],
|
|
transformIgnorePatterns: [
|
|
'node_modules/(?!(@faker-js|@klx)/)',
|
|
],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
|
babelConfig: true,
|
|
},
|
|
},
|
|
};
|