-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile
44 lines (38 loc) · 870 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
test-user:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--reporter spec \
--harmony \
--timeout 10000 \
endpoints/users/test.js
test-domain:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--reporter spec \
--harmony \
--timeout 10000 \
endpoints/domains/test.js
test-group:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--reporter spec \
--harmony \
--timeout 10000 \
endpoints/groups/test.js
test-server:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--reporter spec \
--harmony \
--timeout 10000 \
endpoints/servers/test.js
test-pages:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--reporter spec \
--harmony \
--timeout 10000 \
endpoints/pages/test.js
admin:
node --harmony resources/user/fixtures/seed.js
.PHONY: test-user