anytv-node-mongo
Version:
Our version of mongoskin that makes connecting to mongo simpler. Especially made for our awesome expressjs boilerplate.
9 lines (8 loc) • 350 B
Plain Text
mocha_option := --recursive -t 5000 -s 100
test:
ifeq ($(TRAVIS),1)
@NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- $(mocha_option) && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
else
@NODE_ENV=test ./node_modules/.bin/mocha -R spec $(mocha_option)
endif
.PHONY: test