1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 11:31:22 +00:00
haste-server/config/jest.config.js

15 lines
296 B
JavaScript
Raw Normal View History

2022-05-27 13:04:54 +00:00
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
2022-05-27 13:22:24 +00:00
rootDir: '../',
2022-05-27 13:04:54 +00:00
testRegex: '\\.test\\.ts$',
2022-06-06 17:38:20 +00:00
reporters: ['default'],
roots: [
"test"
],
moduleNameMapper: {
"src/(.*)": "<rootDir>/src/$1"
}
2022-05-27 13:04:54 +00:00
}