저장용 | jest 설치
포스트
취소

저장용 | jest 설치

의존성

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"
      ]
  }
}

typesjest 추가

이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.