UNPKG
jpush-api-nodejs-client
Version:
latest (0.1.0)
0.1.0
JPush's officially supported Node.js client library.
www.jpush.cn
jpush-api-nodejs-client
/
Makefile
11 lines
(8 loc)
•
202 B
Plain Text
View Raw
1
2
3
4
5
6
7
8
9
10
11
TESTS = test/*.js REPORTER = spec TIMEOUT = 60000 MOCHA = ./node_modules/mocha/bin/mocha
test:
@npm install @
$(MOCHA)
--reporter
$(REPORTER)
--timeout
$(TIMEOUT)
$(MOCHA_OPTS)
$(TESTS)
.PHONY
: test