nodejs mocha suite is not defined error

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

    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

提交回复
热议问题