250x250
Notice
Recent Posts
Recent Comments
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- RDS
- mongodb
- moment
- atlas
- TailwindCSS
- certbot
- await
- css
- MYSQL
- EC2
- Node.js
- nginx
- findByIdAndDelete
- mongoose
- Express
- flutter
- wil
- async
- https
- sequelize
- double quote
- Nodejs
- AWS
- Find
- TypeScript
- clipBehavior
- til
- jsonwebtoken
- single quote
- JavaScript
Link
Archives
반응형
목록jest (1)
기억 휘발 방지소
Jest를 이용하여 API 테스트코드 작성하기 (초간단)
Jest는 페이스북에서 만들어 React와 더불어 많은 자바스크립트 개발자들로부터 좋은 반응을 얻고 있는 테스팅 라이브러리이다. 출시 초기에는 프론트엔드에서 주로 쓰였지만 최근에는 백엔드에서도 기존의 자바스크립트 테스팅 라이브러리를 대체하고 있다. 📌 설치 npm install --save-dev jest supertest 📌 테스트 서버를 하나 만들어주었다. // app.js const express = require('express'); const app = express(); app.get('/', (req, res, next) => { res.status(200).json({ message: 'hello world', }); }); module.exports = app; 그리고 테스트를 하기 위한..
Web/Node.js
2022. 11. 11. 17:58
반응형