CodeChef-VIT
Published in

CodeChef-VIT

Introduction to Unit Testing in Node JS

Photo by Cameron Venti on Unsplash
npm init --yes
npm install mocha chai --save-dev
"test": "mocha index.test.js"
npm test
npm install istanbul --save-dev
"coverage": "istanbul cover _mocha index.test.js -x *.test.js",
"showcoverage": "xdg-open coverage/lcov-report/index.html"
npm run coverage
npm run showcoverage

--

--

CodeChef-VIT is a non-commercial organisation with a goal is to provide a platform for programmers and developers everywhere to meet, compete and have fun.

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store