Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « qs « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 31cc899d4ad78f3c0db311c5530b06e340e3cd2a (plain)
1
2
3
4
5
6
7
8
test:
	@node node_modules/lab/bin/lab -a code -L
test-cov:
	@node node_modules/lab/bin/lab -a code -t 100 -L
test-cov-html:
	@node node_modules/lab/bin/lab -a code -L -r html -o coverage.html

.PHONY: test test-cov test-cov-html