UNPKG

347 BPlain TextView Raw
1REPORTER = list
2
3test:
4 @NODE_ENV=test ./node_modules/.bin/mocha -u bdd --timeout 5s --reporter $(REPORTER)
5
6test-cov: lib-cov
7 @PDFINFO_COV=1 $(MAKE) test REPORTER=html-cov > test/coverage.html
8
9lib-cov:
10 @rm -fr ./$@
11 @jscoverage --no-highlight lib $@
12
13clean:
14 rm -f test/coverage.html
15 rm -fr lib-cov
16
17.PHONY: test test-cov lib-cov clean