2023.05.22 - [분류 전체보기] - [Jest] Typescript + Express + Jest로 Service 테스트하기 - Mock, Sequelize [Jest] Typescript + Express + Jest로 Service 테스트하기 - Mock, Sequelize Express로 새로운 서비스를 작업하던 중, test를 작성해보기로 했다. routes, controllers, services, models 로 나눠진 계층 구조에서 service만 먼저 테스트하려 한다. 환경 설정 모듈 설치 npm install -D jest @types/ kongjino.tistory.com (이전 글에서 이어지는 글입니다) 이번엔 controller에 대한 테스트를 작성해보겠다. 크게 달라지는 ..