-
Nestjs에서 Type 'typeof supertest' has no call signaturesNest.js/TDD 2023. 11. 11. 15:45728x90
import * as request from 'supertest' -> 변경
import request from 'supertest';
// tsconfig.json
{ "compilerOptions": { .... "esModuleInterop": true, // 추가, .... } }
esModuleInterop 추가
728x90'Nest.js > TDD' 카테고리의 다른 글
e2e 테스트를 공부 하면서 save함수의 리턴값과 toEqual로 값비교 (0) 2024.03.20 왜 테스트 코드를 작성 해야 하는지 알게 된 경험(typeorm bigint 이슈) (0) 2024.03.19 nestjs-test-coverage에서 제외 파일 설정 (0) 2024.03.09 Nestjs에서 테스트 코드 작성시 Nest can't resolve dependencies in the RootTestModule context 에러 (0) 2024.01.09 vscode - jest를 위한 Jest Extension 설치 (0) 2024.01.04