Setup Jest in TypeScript project using ts-jest
14 August 2022 (Updated 14 August 2022)
Install packages
npm i -D typescript jest @types/jest ts-jest
Generate Jest config file
npx ts-jest config:init
Add NPM script
{
"scripts": {
"test": "jest"
}
}
Run tests
npm test
Sources
Tagged:
TypeScript
Thanks for your comment 🙏. Once it's approved, it will appear here.
Leave a comment