blob: a757add0003b303f6cf60fd11838509d377a5aee [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001test:
2 @npm run test
3
4lib-cov:
5 @./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib
6
7coverage: lib-cov
8 @COVERAGE=1 ISTANBUL_REPORTERS=text-summary ./node_modules/.bin/mocha --reporter mocha-istanbul
9 @rm -rf lib-cov
10
11coveralls: lib-cov
12 @COVERAGE=1 ISTANBUL_REPORTERS=lcovonly ./node_modules/.bin/mocha --reporter mocha-istanbul
13 @cat lcov.info | ./node_modules/.bin/coveralls
14 @rm -rf lib-cov lcov.info
15
16travis: lint test coveralls
17
18lint:
19 @npm run lint
20
21.PHONY: test