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
551 B
20 lines
551 B
/* eslint-disable */
|
|
export default {
|
|
displayName: 'sensors-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/sensors-service-e2e',
|
|
};
|