UNPKG

196 BPlain TextView Raw
1ALL_TESTS = $(shell find test/ -name '*.test.js')
2
3run-tests:
4 @./node_modules/.bin/mocha \
5 $(TESTFLAGS) \
6 $(TESTS)
7
8test:
9 @$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
10
11.PHONY: test