mocha
教程:https://cnodejs.org/topic/516526766d38277306c7d277
nodejs单元测试:http://taobaofed.org/blog/2015/12/10/nodejs-unit-tests/
断言库:should.js API:https://github.com/tj/should.js
chai http://www.jianshu.com/p/f200a75a15d2 前端
覆盖率:istanbul nodejs默认支持的 http://www.ruanyifeng.com/blog/2015/06/istanbul.html
请求:request nodejs的一个模块
request.post().send() 发送的参数可以通过body获取 request.get() 不能通过send发送,只能通过链接在url之后,发送参数
测试:supertest