mirror of
https://github.com/OpenBankProject/API-Explorer-II.git
synced 2026-02-06 10:47:04 +00:00
11 lines
319 B
JavaScript
11 lines
319 B
JavaScript
module.exports = {
|
|
transform: {
|
|
'^.+\\.ts?$': 'ts-jest',
|
|
"^.+\\.(js)$": "babel-jest",
|
|
},
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testRegex: '/tests/.*\\.(test|spec)?\\.(ts|tsx)$',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
detectOpenHandles: true,
|
|
}; |