lint
eslint --fix ./
pretest
npm run lint
test:only
NODE_ENV=test mocha --exit -r spec/init -R spec 'spec/**/*.spec.js'
test:int
NODE_ENV=test mocha --exit -r spec/init -R spec 'spec/integration/**/*.spec.js'
test:ci
NODE_ENV=test mocha --exit -r spec/init -R spec 'spec/behavior/**/*.spec.js'
test:watch
nodemon --exec "NODE_ENV=test mocha --exit -r spec/init -R progress 'spec/**/*.spec.js' || true"
test:watchci
nodemon --exec "NODE_ENV=test mocha --exit -r spec/init -R progress 'spec/behavior/**/*.spec.js' || true"
test
npm run cover
cover
nyc -r text-summary -r html -- npm run test:only
cover:ci
nyc -r text-summary -r html -- npm run test:ci
cover:int
nyc -r text-summary -r html -- npm run test:int
cover:show
open "file://$PWD/coverage/index.html"