forked from derbyjs/racer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
41 lines (35 loc) · 1.04 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
compile:
@mkdir -p 'dev'
@make compile-macro & make compile-coffee && fg
compile-coffee:
./node_modules/coffee-script/bin/coffee -bw -o ./lib -c ./src ./dev
compile-examples:
./node_modules/coffee-script/bin/coffee -bcw ./examples/*/*.coffee
compile-macro:
./scripts/watch-macro
ROOT := $(shell pwd)
MOCHA_TESTS := $(shell find test/ -name '*.mocha.coffee')
MOCHA := ./node_modules/mocha/bin/mocha
OUT_FILE = "test-output.tmp"
g = "."
test-mocha:
$(ROOT)/scripts/prepublish;
@NODE_ENV=test $(MOCHA) \
--grep "$(g)" \
$(MOCHA_TESTS) | tee $(OUT_FILE)
test-external:
cd $(ROOT)/node_modules/racer-journal-redis/; make test
cd $(ROOT)/node_modules/racer-pubsub-redis/; make test
cd $(ROOT)/node_modules/racer-db-mongo/; make test
cd $(ROOT)
test-fast:
@NODE_ENV=test $(MOCHA) \
--colors \
--reporter spec \
--timeout 500 \
--grep "^(?:(?!@slow).)*$$" \
$(MOCHA_TESTS) | tee $(OUT_FILE)
test: test-mocha
test-all: test-mocha test-external
test!:
@perl -n -e '/\[31m 0\) (.*?).\[0m/ && print "make test g=\"$$1\$$\""' $(OUT_FILE) | sh