-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
78 lines (54 loc) · 2.09 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
web:
@gulp
test: web test-api test-js test-jscontext test-es6parser test-css test-html test-jsx test-csx
test-js: test-jslexer test-jsparser
test-es6: test-jslexer test-es6parser
test-css: test-csslexer test-cssparser
test-html: test-htmllexer test-htmlparser
test-jsx: test-jsxlexer test-jsxlexer2 test-jsxparser test-jsxparser2
test-csx: test-csxlexer test-csxlexer2 test-csxparser test-csxparser2
test-axml: test-axmllexer test-axmlparser
test-api:
@mocha tests/api.js -R spec
test-jslexer:
@mocha tests/jslexer.js -R spec
test-jsparser:
@mocha tests/jsparser.js -R spec
test-jscontext:
@mocha tests/jscontext.js -R spec
test-es6parser:
@mocha tests/es6parser.js -R spec
test-csslexer:
@mocha tests/csslexer.js -R spec
test-cssparser:
@mocha tests/cssparser.js -R spec
test-htmllexer:
@mocha tests/htmllexer.js -R spec
test-htmlparser:
@mocha tests/htmlparser.js -R spec
test-jsxlexer:
@mocha tests/jsxlexer.js -R spec
test-jsxlexer2:
@mocha tests/jsxlexer2.js -R spec
test-jsxparser:
@mocha tests/jsxparser.js -R spec
test-jsxparser2:
@mocha tests/jsxparser2.js -R spec
test-csxlexer:
@mocha tests/csxlexer.js -R spec
test-csxlexer2:
@mocha tests/csxlexer2.js -R spec
test-csxparser:
@mocha tests/csxparser.js -R spec
test-csxparser2:
@mocha tests/csxparser2.js -R spec
test-axmllexer:
@mocha tests/axmllexer.js -R spec
test-axmlparser:
@mocha tests/axmlparser.js -R spec
test-walk:
@mocha tests/walk.js -R spec
coveralls:
@mocha tests/api.js tests/jslexer.js tests/jsparser.js tests/jscontext.js tests/es6parser.js tests/csslexer.js tests/cssparser.js tests/htmllexer.js tests/htmlparser.js tests/jsxlexer.js tests/jsxlexer2.js tests/jsxparser.js tests/jsxparser2 tests/walk.js --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js
test-cov:
@mocha tests/api.js tests/jslexer.js tests/jsparser.js tests/jscontext.js tests/es6parser.js tests/csslexer.js tests/cssparser.js tests/htmllexer.js tests/htmlparser.js tests/jsxlexer.js tests/jsxlexer2.js tests/jsxparser.js tests/jsxparser2 tests/walk.js --require blanket -R html-cov > tests/covrage.html