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.
12 lines
355 B
12 lines
355 B
/** @type {import('jest').Config} */ |
|
module.exports = { |
|
testEnvironment: 'node', |
|
rootDir: '.', |
|
testRegex: '\\.e2e-spec\\.ts$', |
|
moduleFileExtensions: ['ts', 'js', 'json'], |
|
transform: { |
|
'^.+\\.ts$': ['ts-jest', { tsconfig: 'tsconfig.json', isolatedModules: true }], |
|
}, |
|
testTimeout: 30000, |
|
setupFiles: ['<rootDir>/test/setup-env.ts'], |
|
};
|
|
|