root / HServer / 00.Server / 00.Program / node_modules / mquery / Makefile
이력 | 보기 | 이력해설 | 다운로드 (430 Bytes)
| 1 |
|
|---|---|
| 2 |
test: |
| 3 |
@NODE_ENV=test ./node_modules/.bin/mocha $(T) $(TESTS) |
| 4 |
|
| 5 |
test-cov: |
| 6 |
@NODE_ENV=test node \ |
| 7 |
node_modules/.bin/istanbul cover \ |
| 8 |
./node_modules/.bin/_mocha \ |
| 9 |
-- -u exports \ |
| 10 |
|
| 11 |
open-cov: |
| 12 |
open coverage/lcov-report/index.html |
| 13 |
|
| 14 |
test-travis: |
| 15 |
@NODE_ENV=test node \ |
| 16 |
node_modules/.bin/istanbul cover \ |
| 17 |
./node_modules/.bin/_mocha \ |
| 18 |
--report lcovonly \ |
| 19 |
-- -u exports \ |
| 20 |
--bail |
| 21 |
|
| 22 |
.PHONY: test test-cov open-cov test-travis |