Cannot resolve path in Mocha

前端 未结 7 1279
被撕碎了的回忆
被撕碎了的回忆 2020-12-30 21:45

I am currently using Nitrous, which shouldn\'t matter, but I needed to install mocha so I typed in:

npm install - g mocha.

Everything insta

7条回答
  •  [愿得一人]
    2020-12-30 22:38

    npm install -g mocha
    npm install mocha --save-dev  
    

    write your test : test.js add below script in your package json file

    "scripts": {
        "api:test": "node_modules/.bin/mocha --timeout 10000 --recursive test/"
    },
    

    go to your test directory : npm run api:test

    https://github.com/shahing/Mocha-RestAPI-Tests

提交回复
热议问题