You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
553 B
20 lines
553 B
1 year ago
|
/* eslint-disable */
|
||
|
export default {
|
||
|
displayName: 'measures-service-e2e',
|
||
|
preset: '../../jest.preset.js',
|
||
|
globalSetup: '<rootDir>/src/support/global-setup.ts',
|
||
|
globalTeardown: '<rootDir>/src/support/global-teardown.ts',
|
||
|
setupFiles: ['<rootDir>/src/support/test-setup.ts'],
|
||
|
testEnvironment: 'node',
|
||
|
transform: {
|
||
|
'^.+\\.[tj]s$': [
|
||
|
'ts-jest',
|
||
|
{
|
||
|
tsconfig: '<rootDir>/tsconfig.spec.json',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
moduleFileExtensions: ['ts', 'js', 'html'],
|
||
|
coverageDirectory: '../../coverage/measures-service-e2e',
|
||
|
};
|