Sergey Klevakin

Results 2 comments of Sergey Klevakin

I just resolved same problem with angular project by this config: ```js // jest.config.js module.exports = { preset: 'jest-preset-angular', setupFilesAfterEnv: ['/src/setupJest.ts'], testRegex: ..., roots: ['/src'], modulePaths: ['/dist'], }; ``` More...