nodejs+mocha+supertest+chai进行测试(only demo)
Posted yoyoblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs+mocha+supertest+chai进行测试(only demo)相关的知识,希望对你有一定的参考价值。
1、nodejs安装成功 (上一篇:brew install nodejs)
2、mocha安装成功
npm install -g mocha
解释: -g代表global,全局的意思。此处mocha是nodejs的一个测试工具,所以用来管理test case
3、supertest 安装成功
npm install supertest --save-dev
4、chai安装成功
npm install chai --save-dev
3、try to create a Module:
when click new:
next:
next:(input name)
Then:finish project
2、集成mocha
3、集成supertest
4、集成chai
以上是关于nodejs+mocha+supertest+chai进行测试(only demo)的主要内容,如果未能解决你的问题,请参考以下文章
使用 mocha 和超级测试的 NodeJS HTTPS API 测试 -“DEPTH_ZERO_SELF_SIGNED_CERT”
单元/集成测试 Express REST API, mongoose, mocha, sinon, chai, supertest