
설치 $ npm i --save-dev @nestjs/testing Unit Testing. Testing files should have a .spec or .test suffix. isolated testing 프레임워크로부터 독립적 dependency injection 가 없다 import { CatsController } from './cats.controller'; import { CatsService } from './cats.service'; describe('CatsController', () => { let catsController: CatsController; let catsService: CatsService; beforeEach(() => { catsService = new Cat..