Makefile 118 B

12345678910
  1. TESTS = tests/*.js
  2. all: test
  3. test:
  4. npm install .
  5. @./node_modules/nodeunit/bin/nodeunit \
  6. $(TESTS)
  7. .PHONY: test