UNPKG
cloudd
Version:
latest (0.2.5)
0.2.5
0.2.4
0.2.3
0.2.1
0.2.0
0.1.1
0.1.0
0.0.4
0.0.3
0.0.2
0.0.1
node based job execution engine
github.com/openmason/cloudd
openmason/cloudd
cloudd
/
Makefile
17 lines
(10 loc)
•
246 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
REPORTER = spec
test: test-unit
test-unit:
@NODE_ENV=test ./node_modules/.bin/mocha \ --reporter
$(REPORTER)
test-cov: lib-cov
@EXPRESS_COV=1
$(MAKE)
test REPORTER=html-cov > coverage.html
lib-cov:
@jscoverage lib lib-cov
.PHONY
: test