nodejs mocha suite is not defined error

前端 未结 3 1311
野趣味
野趣味 2021-02-02 09:13

I am trying to run some tests using mocha but cant seem to get over this error.

E:\\tdd\\nodejs\\cart>mocha cart.test.js

node.js:201
        throw e; // proc         


        
3条回答
  •  孤街浪徒
    2021-02-02 09:30

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

    "scripts": {
    "start" : "node server",      
    "test": "mocha -u tdd" 
     }
    

提交回复
热议问题