Files
moviedb/Makefile
Dan Zajdband a951072182 initial commit
2012-05-16 20:32:25 -03:00

12 lines
196 B
Makefile

ALL_TESTS = $(shell find test/ -name '*.test.js')
run-tests:
@./node_modules/.bin/mocha \
$(TESTFLAGS) \
$(TESTS)
test:
@$(MAKE) NODE_PATH=lib TESTS="$(ALL_TESTS)" run-tests
.PHONY: test