의존성
1
yarn add -D typescript jest @types/jest ts-node ts-jest
jest.config.ts 추가
1
2
3
4
5
6
7
8
9
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
transform: {
'^.+\\.tsx?$': 'ts-jest',
},
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
transformIgnorePatterns: ['/node_modules/'],
};
프로젝트폴더의 jest.config.ts
에 위치
tsconfig.json 수정
1
2
3
4
5
6
7
{
"compilerOptions": {
"types" : [
"jest"
]
}
}
types
에 jest 추가