| Leo Repp | 58b9f11 | 2021-11-22 11:57:47 +0100 | [diff] [blame^] | 1 | test: |
| 2 | @npm run test |
| 3 | |
| 4 | lib-cov: |
| 5 | @./node_modules/.bin/istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib |
| 6 | |
| 7 | coverage: lib-cov |
| 8 | @COVERAGE=1 ISTANBUL_REPORTERS=text-summary ./node_modules/.bin/mocha --reporter mocha-istanbul |
| 9 | @rm -rf lib-cov |
| 10 | |
| 11 | coveralls: 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 | |
| 16 | travis: lint test coveralls |
| 17 | |
| 18 | lint: |
| 19 | @npm run lint |
| 20 | |
| 21 | .PHONY: test |