nodejs mocha suite is not defined error

≯℡__Kan透↙ 提交于 2019-12-02 20:17:06

You need to tell Mocha to use the TDD interface, instead of the default BDD one:

mocha --ui tdd card.test.js

You can also include a Makefile in your project and specify TDD like so:

test:
    @./node_modules/.bin/mocha -u tdd

.PHONY: test

Hat tip: DailyJS

Karthik M

You can do the same by just specifying mocha -u tdd in package.json

"scripts": {
"start" : "node server",      
"test": "mocha -u tdd" 
 }
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!