Hello team Today we upd…
Hello team, Today we updated to 9.2.0 of nx today, and found that the change to jest now does not run any tests. Has anyone experienced this issue?
Responses:
Are they angular tests?
angular and nest tests
Can you confirm that jest-preset-angular is >=8.1.2
I ran into this issue. I had to update testMatch
in the top level jest.config.js
to testMatch: ['**/*(*.)+(spec|test).[tj]s?(x)']
some more info here https://github.com/nrwl/nx/issues/2815
"jest-preset-angular": "8.0.0",
Can you update that to 8.1.2 +
updating now
changing the regex works for me. I don’t understand why though