supertest
[nest.js & jest] nest 에서 jest 사용시 Cannot find module 해결
FAIL test/auth.e2e-spec.ts ● Test suite failed to run Cannot find module 'src/apps/booking/entities/booking.entity' from '../src/apps/auth/entities/user.entity.ts' e2e test를 진행하던중 발견한 내용입니다. 해당 내용은 모듈을 import문에서 발생하는것입니다. 여기사 말한 모듈은 외부라이브러리를 포함한 해당 파일내에서 불러오는 다른 모든 외부파일을 의미하게 됩니다. 오류가 발생한 import 문 살펴보기 import { Booking } from 'src/apps/booking/entities/booking.entity'; 해당 import문은 프로젝트 root폴더를 기..