nestJS

· nestJS
설치 $ 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..
· nestJS
CLI 설치 $ npm i -g @nestjs/cli 프로젝트 구성 $ nest new 프로젝트 이름 # ex) $ nest new nest-project 프로젝트 시작 $ cd 프로젝트 이름 $ npm run start $ curl http://localhost:3000 Hello World!%
밤밭황제
'nestJS' 카테고리의 글 목록