mirror of
https://github.com/cnodejs/nodeclub.git
synced 2025-12-08 19:55:55 +00:00
32 lines
698 B
Makefile
32 lines
698 B
Makefile
TESTS = $(shell find test -type f -name "*.js")
|
|
TESTTIMEOUT = 5000
|
|
REPORTER = spec
|
|
JSCOVERAGE = ./node_modules/jscover/bin/jscover
|
|
|
|
install:
|
|
@npm install
|
|
|
|
test: install
|
|
@if ! test -f config.js; then \
|
|
cp config.default.js config.js; \
|
|
fi
|
|
@if ! test -f assets.json; then \
|
|
make build; \
|
|
fi
|
|
@NODE_ENV=test ./node_modules/mocha/bin/mocha \
|
|
--reporter $(REPORTER) --timeout $(TESTTIMEOUT) $(TESTS)
|
|
|
|
cov: install
|
|
@rm -rf .cov
|
|
@$(JSCOVERAGE) --exclude=public --exclude=test . .cov
|
|
@cp -rf node_modules test public .cov
|
|
|
|
test-cov: cov
|
|
@$(MAKE) -C .cov test REPORTER=progress
|
|
@$(MAKE) -C .cov test REPORTER=html-cov > coverage.html
|
|
|
|
build:
|
|
@./bin/combo views .
|
|
|
|
.PHONY: test test-cov cov
|