This repository has been archived on 2022-07-06. You can view files and clone it, but cannot push or open issues or pull requests.
websocket-webcam/node_modules/jsftp/node_modules/parse-listing/Makefile

40 lines
1.2 KiB
Makefile

# use the tools as dev dependencies rather than installing them globaly
# it lets you handle specific versions of the tooling for each of your projects
MOCHA=node_modules/.bin/mocha
ISTANBUL=node_modules/.bin/istanbul
JSHINT=node_modules/.bin/jshint
# test files must end with ".test.js"
TESTS=$(shell find test/ -name "*.test.js")
clean:
rm -rf reports
test:
$(MOCHA) -R spec $(TESTS)
coverage:
@# check if reports folder exists, if not create it
@test -d reports || mkdir reports
$(ISTANBUL) instrument --output src-cov src
@# move original src code and replace it by the instrumented one
mv src src-orig && mv src-cov src
@# tell istanbul to only generate the lcov file
ISTANBUL_REPORTERS=lcovonly $(MOCHA) -R mocha-istanbul $(TESTS)
@# place the lcov report in the report folder, remove instrumented code
@# and reput src at its place
mv lcov.info reports/
rm -rf src
mv src-orig src
genhtml reports/lcov.info --output-directory reports/
jshint:
$(JSHINT) src test --show-non-errors
checkstyle:
@# check if reports folder exists, if not create it
@test -d reports || mkdir reports
$(JSHINT) src test --reporter=checkstyle > reports/checkstyle.xml
.PHONY: clean test coverage jshint checkstyle