nestjs 테스트 코드 작성
·
개인 공부/테스트코드
되새기기describe('',()=>{}); // 여러개의 it를 사용하기 위해 사용it('',()=>{}); // 하나의 검증을 위해 사용beforeEach(() => {}); // it 실행전에 매번 실행해줌 nestjs 테스트 코드 작성아래 코드는 app.controller.ts 파일의 초기 코드이다.import { Controller, Get } from '@nestjs/common';import { AppService } from './app.service';@Controller()export class AppController { constructor(private readonly appService: AppService) {} @Get() getHello(): string { r..