미니옵빠의 code stubs
Testing TypeScript with Jest 본문
아래 Article 참고하여 설정
https://rjzaworski.com/2016/12/testing-typescript-with-jest
몇가지 추가 참고할 것
jest.config.js 내 아래와 같이 간략히 설정 가능
transform: {
'^.+\\.ts$': 'ts-jest'
},
jest.config.js 내 moduleFileExtensions 항목에 아래와 같이 ts, tsx 추가 필요
moduleFileExtensions: [
'js',
'jsx',
'json',
'ts',
'tsx'
],
참고: https://facebook.github.io/jest/docs/en/configuration.html#modulefileextensions-array-string