TIL: Speed up jest tests
A modest speed-up for ts-jest
Toni PetrinaPublished on 2021-07-05•1 min read
To speed up Jest tests paired with ts-jest
, add the following to jest.config.js
:
globals: {
"ts-jest": {
isolatedModules: true,
},
},
maxWorkers: 1,