티스토리 뷰
1. mochahttp://mochajs.org
- 테스트 수트 : 테스트 환경을 모카에서는 describe()로 구현
- 테스트 케이스 : 실제 테스트 it() 으로 구현
//{filename}.spec.js : 테스트 코드
const assert = require('assert')
describe('.js모듈의 함수', () => {
it ('문자열을 대문자로 변환', () => {
const result = {메소드}(value)
assert.equal(result, 'ok')
})
})
2. shouldhttps://github.com/tj/should.js
1.mocha 에 비해 가독성이 좋다
describe('.js모듈의 함수', () => {
it ('문자열을 대문자로 변환', () => {
//
const result = {메소드}(value)
result.should.be.equal('ok')
})
})
#단위 테스트
3. superTesthttps://github.com/visionmedia/supertest
#통합테스트, 익스프레스 통합 테스트용 라이브러리
node.js
orm
http://knexjs.org/
https://www.npmjs.com/package/knex
오라클 사용시 대문자 SQL 사용
oracledb 설치
https://devbybyun.tistory.com/7
https://osozaki.tistory.com/4
https://github.com/oracle/node-oracledb/blob/master/examples/example.js#L32
express-basic-auth
'공부합시다 > express' 카테고리의 다른 글
express ORM 트랜드 (0) | 2019.12.31 |
---|
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 자바스크립트
- session+token authorize
- laravel-test
- graphql
- password-manager
- observer 매개변수 전달하기
- addMonth
- bitwarden-cli
- 정규식
- 메일
- l5-swagger-response
- eloquent-observer
- Laravel
- django
- graphql-php
- exception-test
- POP3
- 테스트_다중트랜잭션
- php-laravel
- redis
- addMonthWithoutOverflow
- 정의
- laravel-kafka
- vim
- php
- Python
- MySQL
- l5-swagger
- aaa패턴
- 라라벨
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함