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