forked from mochajs/mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
159 lines (121 loc) · 3.96 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
BROWSERIFY := "node_modules/.bin/browserify"
ESLINT := "node_modules/.bin/eslint"
KARMA := "node_modules/.bin/karma"
MOCHA := "bin/mocha"
TM_BUNDLE = JavaScript\ mocha.tmbundle
SRC = $(shell find lib -name "*.js" -type f | sort)
TESTS = $(shell find test -name "*.js" -type f | sort)
all: mocha.js
mocha.js: $(SRC) browser-entry.js
@printf "==> [Browser :: build]\n"
$(BROWSERIFY) ./browser-entry \
--plugin ./scripts/dedefine \
--ignore 'fs' \
--ignore 'glob' \
--ignore 'path' \
--ignore 'supports-color' > $@
clean:
@printf "==> [Clean]\n"
rm -f mocha.js
lint:
@printf "==> [Test :: Lint]\n"
$(ESLINT) . bin/*
test-node: test-bdd test-tdd test-qunit test-exports test-unit test-integration test-jsapi test-compilers test-glob test-requires test-reporters test-only test-global-only
test-browser: clean mocha.js test-browser-unit test-browser-bdd test-browser-qunit test-browser-tdd test-browser-exports
test: lint test-node test-browser
test-browser-unit:
@printf "==> [Test :: Browser]\n"
NODE_PATH=. $(KARMA) start --single-run
test-browser-bdd:
@printf "==> [Test :: Browser :: BDD]\n"
MOCHA_UI=bdd $(MAKE) test-browser-unit
test-browser-qunit:
@printf "==> [Test :: Browser :: QUnit]\n"
MOCHA_UI=qunit $(MAKE) test-browser-unit
test-browser-tdd:
@printf "==> [Test :: Browser :: TDD]\n"
MOCHA_UI=tdd $(MAKE) test-browser-unit
test-jsapi:
@printf "==> [Test :: JS API]\n"
node test/jsapi
test-unit:
@printf "==> [Test :: Unit]\n"
$(MOCHA) test/acceptance/*.js \
--growl \
test/*.js
test-integration:
@printf "==> [Test :: Integrations]\n"
$(MOCHA) --timeout 5000 \
test/integration/*.js
test-compilers:
@printf "==> [Test :: Compilers]\n"
$(MOCHA) --compilers coffee:coffee-script/register,foo:./test/compiler/foo \
test/acceptance/test.coffee \
test/acceptance/test.foo
test-requires:
@printf "==> [Test :: Requires]\n"
$(MOCHA) --compilers coffee:coffee-script/register \
--require test/acceptance/require/a.js \
--require test/acceptance/require/b.coffee \
--require test/acceptance/require/c.js \
--require test/acceptance/require/d.coffee \
test/acceptance/require/require.spec.js
test-bdd:
@printf "==> [Test :: BDD]\n"
$(MOCHA) --ui bdd \
test/acceptance/interfaces/bdd.spec
test-tdd:
@printf "==> [Test :: TDD]\n"
$(MOCHA) --ui tdd \
test/acceptance/interfaces/tdd.spec
test-qunit:
@printf "==> [Test :: QUnit]\n"
$(MOCHA) --ui qunit \
test/acceptance/interfaces/qunit.spec
test-exports:
@printf "==> [Test :: Exports]\n"
$(MOCHA) --ui exports \
test/acceptance/interfaces/exports.spec
test-glob:
@printf "==> [Test :: Glob]\n"
bash ./test/acceptance/glob/glob.sh
test-reporters:
@printf "==> [Test :: Reporters]\n"
$(MOCHA) test/reporters/*.js
test-only:
@printf "==> [Test :: Only]\n"
$(MOCHA) --ui tdd \
test/acceptance/misc/only/tdd.spec
$(MOCHA) --ui bdd \
test/acceptance/misc/only/bdd.spec
$(MOCHA) --ui qunit \
test/acceptance/misc/only/bdd-require.spec
test-global-only:
@printf "==> [Test :: Global Only]\n"
$(MOCHA) --ui tdd \
test/acceptance/misc/only/global/tdd.spec
$(MOCHA) --ui bdd \
test/acceptance/misc/only/global/bdd.spec
$(MOCHA) --ui qunit \
test/acceptance/misc/only/global/qunit.spec
test-mocha:
@printf "==> [Test :: Mocha]\n"
$(MOCHA) test/mocha
non-tty:
@printf "==> [Test :: Non-TTY]\n"
$(MOCHA) --reporter dot \
test/acceptance/interfaces/bdd.spec 2>&1 > /tmp/dot.out
@echo dot:
@cat /tmp/dot.out
$(MOCHA) --reporter list \
test/acceptance/interfaces/bdd.spec 2>&1 > /tmp/list.out
@echo list:
@cat /tmp/list.out
$(MOCHA) --reporter spec \
test/acceptance/interfaces/bdd.spec 2>&1 > /tmp/spec.out
@echo spec:
@cat /tmp/spec.out
tm:
@printf "==> [TM]\n"
open editors/$(TM_BUNDLE)
.PHONY: test-jsapi test-compilers watch test test-node test-bdd test-tdd test-qunit test-exports test-unit test-integration non-tty tm clean test-browser test-browser-unit test-browser-bdd test-browser-qunit test-browser-tdd test-browser-exports lint test-only test-global-only