-
nestjs-test-coverage에서 제외 파일 설정Nest.js/TDD 2024. 3. 9. 20:17728x90
- Reference
https://jestjs.io/docs/configuration#coveragepathignorepatterns-arraystring
//package.json { ... "coverageDirectory": "../coverage", "testEnvironment": "node", "coveragePathIgnorePatterns": [ "<rootDir>/main.ts", "<rootDir>/app.module.ts" ] } }
728x90'Nest.js > TDD' 카테고리의 다른 글
e2e 테스트를 공부 하면서 save함수의 리턴값과 toEqual로 값비교 (0) 2024.03.20 왜 테스트 코드를 작성 해야 하는지 알게 된 경험(typeorm bigint 이슈) (0) 2024.03.19 Nestjs에서 테스트 코드 작성시 Nest can't resolve dependencies in the RootTestModule context 에러 (0) 2024.01.09 vscode - jest를 위한 Jest Extension 설치 (0) 2024.01.04 Nestjs에서 Type 'typeof supertest' has no call signatures (0) 2023.11.11