express typescript typeorm환경에서 테스트하기2(단위 테스트, 통합 테스트)
배경 저번글에서 기본 jest 사용법을 알아봤다. 기본 사용법은 알았으니 뚝딱 되지 않을까?? 그럴리가... 단위 테스트 미들웨어 테스트 먼저 미들웨어 테스트를 해보자. 비교적 간단한 것부터 시작하려고 한다. is-logged-in-middleware.ts import { NextFunction, Request, Response } from 'express'; const isLoggedInMiddleware = async (req: Request, res: Response, next: NextFunction) => { if (req.user) { return next(); } res.status(403).json({ errorMessage: '로그인이 필요합니다' }); }; export default ..
nodejs
2021. 11. 7. 03:32
공지사항