1.0.0 • Published 7 years ago

on-tasks1 v1.0.0

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
7 years ago

on-tasks Build Status Code Climate Coverage Status

'on-tasks' are the job code, libraries and definitions (meant as a library of tasks) to be loaded and run by task graphs as needed.

Copyright 2015, EMC, Inc.

installation

rm -rf node_modules
npm install

CI/testing

To run tests from a developer console:

npm test

To run tests and get coverage for CI:

# verify hint/style
./node_modules/.bin/jshint -c .jshintrc --reporter=checkstyle lib index.js > checkstyle-result.xml || true
./node_modules/.bin/istanbul cover -x "**/spec/**" _mocha -- $(find spec -name '*-spec.js') -R xunit-file --require spec/helper.js
./node_modules/.bin/istanbul report cobertura
# if you want HTML reports locally
./node_modules/.bin/istanbul report html