Requirements: Node v5+ / NPM 3+
Provides NPM scripts for testing with Mocha / Chai, generating code coverage with Istanbul and uploading results to Codecov when running continuous integration on Travis CI for all TyphonJS NPM modules and beyond. Linting support is also enabled via ESLint.
This NPM module uses entries defined in the test
entry located in .npmscriptrc
or .npmscriptrc.js
in the root path of a project. This module works for both ES5 and ES6+ testing, but please note the usage instructions below for ES6 testing.
For the latest significant changes please see the CHANGELOG.
-
IMPORTANT (breaking change): The codecov.io NPM module has been deprecated and also contains potential vulnerabilities and has been removed in favor of the official codecov NPM module. You will need to modify
.npmscriptrc
and replace"travis": { "report": "cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js" },
with"travis": { "report": "./node_modules/.bin/codecov" },
. Apologies for the inconvencience. See CHANGELOG for more details. -
IMPORTANT (breaking change): In release
0.5.0
releasesnyk
has been removed.
For a comprehensive ES6 build / testing / publishing NPM module please see typhonjs-npm-build-test as it combines this module for testing along with transpiling ES6 sources with Babel, pre-publish script detection, ESDoc dependencies and an Istanbul instrumentation hook for JSPM / SystemJS tests. For a full listing of all TyphonJS NPM script modules available please see typhonjs-node-npm-scripts organization on GitHub.
There are three testing scripts provided by this module:
mocha.js
just runs Mocha tests.
Both mocha-istanbul.js
and mocha-istanbul-report.js
execute Mocha tests and Istanbul. Also an additional report
command in .npmscriptrc
is executed afterward if defined which is useful when running on Travis CI to upload results to Codecov.
The main difference between mocha-istanbul.js
and mocha-istanbul-report.js
is that istanbul report
is automatically run after the initial istanbul
command from .npmscriptrc
is executed. This is necessary for instance when instrumenting JSPM / SystemJS tests.
To configure the test scripts provide this entry in package.json
scripts entry:
"devDependencies": {
"typhonjs-npm-scripts-test-mocha": "^0.5.0"
},
"scripts": {
"test": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha.js",
"test-coverage": "babel-node ./node_modules/typhonjs-npm-scripts-test-mocha/scripts/mocha-istanbul.js"
},
Please note the usage of babel-node
to invoke the test scripts. If you are using ES6 for tests and sources and have Babel or typhonjs-npm-scripts-build-babel installed use babel-node
instead of node
.
.npmscriptrc
must be defined in the root path and contain a JSON formatted object hash test
hash
with the following options:
(string) report - An optional command to execute that may upload results to Codecov on Travis CI.
(object) istanbul - An object hash containing Istanbul configuration with the following options:
(string) command - The Istanbul command to execute (cover, check-coverage, instrument, report).
(Array<string>) options - An array of optional parameters which are appended to the invocation of Istanbul.
Please run `./node_modules/.bin/istanbul help` for all available options.
(object) mocha - An object hash containing Mocha configuration with the following options:
(string) source - The test source directory.
(Array<string>) options - An array of optional parameters which are prepended to the invocation of Mocha. Please
run `./node_modules/.bin/mocha --help` for all available options.
When running on Travis CI a test.travis
hash in .npmscriptrc
may be provided which overrides any
data stored in the test
hash. This is useful for specifying the coverage
command when running on Travis CI.
A basic configuration for testing ES6+ NPM modules in .npmscriptrc
follows:
{
"test":
{
// Provides a `coverage` handling command that is appended when running on Travis CI.
"travis":
{
"istanbul": { "command": "cover", "options": ["--report lcovonly"] },
"report": "./node_modules/.bin/codecov"
},
"istanbul": { "command": "cover", "options": ["--include-all-sources --root src"] },
"mocha": { "source": "./test/src", "options": ["--compilers js:babel-register", "-t 120000 --recursive"] }
}
}
Please note that you can add comments to .npmscriptrc
. Also please note that if you are testing ES6 sources you must include "--compilers js:babel-register"
in the mocha options.
By default coverage results from Istanbul are output to ./coverage
. The test-coverage.js
script only empties ./coverage
when executed, so if you change the directory Istanbul outputs to please note that it won't be cleared automatically.