mirror of
https://github.com/wahyd4/cdnjs.git
synced 2026-08-11 05:46:04 +10:00
43 lines
720 B
Makefile
43 lines
720 B
Makefile
|
|
TESTS = test/node/*.js
|
|
REPORTER = dot
|
|
|
|
all: superagent.js
|
|
|
|
test:
|
|
@NODE_ENV=test NODE_TLS_REJECT_UNAUTHORIZED=0 ./node_modules/.bin/mocha \
|
|
--require should \
|
|
--reporter $(REPORTER) \
|
|
--timeout 5000 \
|
|
--growl \
|
|
$(TESTS)
|
|
|
|
test-cov: lib-cov
|
|
SUPERAGENT_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html
|
|
|
|
lib-cov:
|
|
jscoverage lib lib-cov
|
|
|
|
superagent.js: components
|
|
@component build \
|
|
--standalone superagent \
|
|
--out . --name superagent
|
|
|
|
components:
|
|
component install
|
|
|
|
test-server:
|
|
@node test/server
|
|
|
|
docs: test-docs
|
|
|
|
test-docs:
|
|
make test REPORTER=doc \
|
|
| cat docs/head.html - docs/tail.html \
|
|
> docs/test.html
|
|
|
|
clean:
|
|
rm -fr superagent.js components
|
|
|
|
.PHONY: test-cov test docs test-docs clean
|