The project is managed using npm.
For a list of available task, type
npm runThe following sections show the available options in detail.
Mocha Test Runner + Should.js Assertion Library.
The test environment is preconfigured to run BDD testing style.
Module mocking during testing can be done with proxyquire
To run tests, type
npm testjshint
Uses provided .jshintrc flag file. To check source code style, type
npm run lintSupport for continuous testing by modifying a src file or a test. For continuous testing, type
npm run test:watchIf you want to continuously check also source code style, use instead:
npm run watchIstanbul
Analizes the code coverage of your tests.
To generate an HTML coverage report under site/coverage/ and to print out a summary, type
# Use git-bash on Windows
npm run test:coverageRemoves node_modules and coverage folders, and package-lock.json file so that a fresh copy of the project is restored.
# Use git-bash on Windows
npm run clean