-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
43 lines (30 loc) · 1.04 KB
/
Makefile
File metadata and controls
43 lines (30 loc) · 1.04 KB
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
REPORTER = spec
MOCHA_OPTS = --compilers js:babel-core/register
current:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/current/*.js
api:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/api/*.js
save:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/save/*.js
cliui:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/cliui/*.js
other:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/other/*.js
ansible:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/ansible/*.js
import-export:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/import-export/*.js
userauth-security:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/userauth-security/*.js
applications:
clear
./node_modules/.bin/mocha --reporter $(REPORTER) $(MOCHA_OPTS) test/applications/*.js
.ALL: api save cliui main import-export userauth-security other ansible