UNPKG

351 BPlain TextView Raw
1
2ALL_TESTS = $(shell find test/ -name '*.test.js')
3
4run-tests:
5 @npm link --local > /dev/null
6 @./node_modules/.bin/expresso \
7 -I lib \
8 -I support \
9 --serial \
10 $(TESTS)
11
12test:
13 @$(MAKE) TESTS="$(ALL_TESTS)" run-tests
14
15test-acceptance:
16 @npm link --local > /dev/null
17 @node support/test-runner/app
18
19build:
20 @node ./bin/builder.js
21
22.PHONY: test