You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
398 B
JavaScript

const baseConfig = require('./../../jest.base.config');
module.exports = {
...baseConfig,
preset: 'ts-jest',
transform: {
'^.+\\.(j|t)s$': 'ts-jest',
},
globalSetup: './__tests__/integration/__config__/jest.setup.global.ts',
globalTeardown: './__tests__/integration/__config__/jest.teardown.global.ts',
setupFilesAfterEnv: ['./__tests__/integration/__config__/jest.setup.ts']
};