mirror of
https://github.com/chaijs/chai
synced 2024-11-15 00:07:11 +00:00
48 lines
909 B
Makefile
48 lines
909 B
Makefile
|
|
TESTS = test/*.js
|
|
REPORTER = dot
|
|
SRC = $(shell find lib -name "*.js" -type f | sort)
|
|
|
|
all: chai.js
|
|
|
|
chai.js: $(SRC)
|
|
@node support/compile $^
|
|
|
|
clean:
|
|
@rm -f chai.js
|
|
|
|
docs: clean-docs
|
|
@./node_modules/.bin/codex build \
|
|
-i docs
|
|
@cp chai.js docs/out/chai.js
|
|
@mkdir -p docs/out/public/js/tests
|
|
@cp node_modules/mocha/mocha.js docs/out/public/js/tests
|
|
@cp -R test/*.js docs/out/public/js/tests
|
|
@node docs/app/app.js
|
|
|
|
make doc-server:
|
|
@node docs/app/app.js
|
|
|
|
clean-docs:
|
|
@rm -rf docs/out
|
|
|
|
test:
|
|
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
--reporter $(REPORTER) \
|
|
--ui tdd \
|
|
$(TESTS)
|
|
|
|
test-cov: lib-cov
|
|
@CHAI_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
|
|
|
|
lib-cov:
|
|
@rm -rf lib-cov
|
|
@jscoverage lib lib-cov
|
|
|
|
test-display:
|
|
@NODE_ENV=test ./node_modules/.bin/mocha \
|
|
--reporter $(REPORTER) \
|
|
--ui tdd \
|
|
test/display/*.js
|
|
|
|
.PHONY: clean test docs clean-docs doc-server test-cov lib-cov
|