-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
45 lines (37 loc) · 864 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
TESTS = test/*.test.js
REPORTER = tap
TIMEOUT = 3000
MOCHA_OPTS =
install:
@npm install --registry=http://registry.cnpmjs.org \
--disturl=http://cnpmjs.org/dist
test:
@NODE_ENV=test ./node_modules/mocha/bin/mocha \
--harmony-generators \
--reporter $(REPORTER) \
--timeout $(TIMEOUT) \
--require should \
$(MOCHA_OPTS) \
$(TESTS)
test-cov:
@NODE_ENV=test node --harmony \
node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha \
-- -u exports \
--reporter $(REPORTER) \
--timeout $(TIMEOUT) \
--require should \
$(MOCHA_OPTS) \
$(TESTS)
@-$(MAKE) check-coverage
check-coverage:
@./node_modules/.bin/istanbul check-coverage \
--statements 95 \
--functions 95 \
--branches 95 \
--lines 95
cov:
@./node_modules/.bin/cov coverage
autod:
@./node_modules/.bin/autod -w -e example.js
@$(MAKE) install
.PHONY: test