Testing node js applications with mocha
git clone https://github.com/quickstart-app/nodejs-mocha-test.git
cd nodejs-mocha-test
npm i
Run the tests defined with Cucumber, and see the coverage:
npm run coverage-cucumber
Run the tests defined with Cucumber:
npm run cucumber
Run the tests with mocha, and see the coverage:
npm run coverage-mocha
Run the tests defined in the pattern: /src/**/*.test.js with mocha:
npm test