Open maximLyakhov opened 1 year ago
Is further support for Jest features integration planned in the v16? It looks like most of the job is done. Also there is no official docs on Angular + Jest except the blog post.
Code coverage isn't supported yet, but once we get there we'll need to make sure it reports stats for the raw source files.
Actually custom config files aren't supported either, so I'm surprised it actually respects the jest.config.mjs
at all. We should probably introduce an error or at least ensure that Jest is pointed at a generated config file.
did anything change with angular17? or did I miss something? thx
Command
test
Is this a regression?
The previous version in which this bug was not present was
No response
Description
ng test
command includes produced chunks in Jest test coverage instead of covering Angular source files.Minimal Reproduction
ng new repro-app --package-manager pnpm --standalone --style scss --routing
cd repro-app
pnpm i -D jest jest-environment-jsdom @types/jest
compilerOptions.types[0]
ng t
Exception or Error
Your Environment
Anything else relevant?
dist/test-out/coverage/index.html
repro-app repo