12 lines
307 B
TypeScript
12 lines
307 B
TypeScript
/* eslint-disable */
|
|
export default {
|
|
transform: {
|
|
'^.+\\.[tj]sx?$': 'ts-jest',
|
|
},
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html'],
|
|
maxWorkers: 1,
|
|
globals: { 'ts-jest': { tsconfig: '<rootDir>/tsconfig.spec.json' } },
|
|
displayName: 'e2e-cypress',
|
|
preset: '../../jest.preset.js',
|
|
};
|