nodejs mocha suite is not defined error

前端 未结 3 1324
野趣味
野趣味 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:21

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

    mocha --ui tdd card.test.js
    

提交回复
热议问题