- Init new application
npm init -y
- Install ts-jest
npm i -D ts-jest @types/jest
- Create initial configuration for typescript
tsc --init
- Create initial configuration for jest
npx ts-jest config:init
- Modify package.json
{
"scrits": {
"test": "jest"
}
}
- Run test
npm test
Usefull links