module.exports = { // to enable logs, comment out the following line silent: true, clearMocks: true, preset: 'ts-jest', testEnvironment: 'node', modulePathIgnorePatterns: ['/dist'], moduleFileExtensions: ['js', 'json', 'ts'], moduleNameMapper: { '^src/(.*)': '/src/$1', }, rootDir: './', testRegex: '.*\\.spec\\.ts$', transform: { '^.+\\.(t|j)s$': 'ts-jest', }, fakeTimers: { enableGlobally: true, }, collectCoverageFrom: ['**/*.(t|j)s'], coverageDirectory: '../coverage', };