jest 를 적용하기 위해서 필요한 설정

1. Jest 설치 확인

npm install jest --save-dev

 

2. pacakge.json 에 있는 테스트 스크립트 변경/추가

 "scripts": {
    "test": "jest" 
  },

 

3. 기본적인 설정 파일을 생성 : jest.config.js 생성

$ npx jest --init

   - Would you like to use Typescript for the configuration file?   → No 선택

+ Recent posts