This is a simple express.js app to be pass through central CI and CD process using Jenkins and Travis deployed on kubernetes cluster hosted on Local machines. Mocha and Supertest are used for unit and integration testing. Istanbul is used for viewing code coverage. Note that this app only focuses on server-side JavaScript testing.
- Node.js - http://nodejs.org
- Grunt.js - run
sudo npm install -g grunt-cli
- Clone the repo
- Install dependencies with
npm install
- Run all tests:
grunt test
- Run unit tests:
grunt mochaTest:unit
- Run route tests:
grunt mochaTest:route
- Run api tests:
grunt mochaTest:api
Build the code coverage report with grunt coverage
.