haste-server/config/jest.config.js

9 lines
207 B
JavaScript
Raw Normal View History

2022-05-27 15:04:54 +02:00
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
2022-05-27 15:22:24 +02:00
rootDir: '../',
2022-05-27 15:04:54 +02:00
testRegex: '\\.test\\.ts$',
reporters: ['default']
}