11 lines
295 B
TypeScript
11 lines
295 B
TypeScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.[tj]sx?$': 'ts-jest',
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
|
|
maxWorkers: 1,
|
|
globals: { 'ts-jest': { tsconfig: '<rootDir>/tsconfig.spec.json' } },
|
|
displayName: 'e2e-workspace-core',
|
|
preset: '../../jest.preset.ts',
|
|
};
|