blob: 277485cbc978b8644e28bdf700c73647947bffc9 [file] [log] [blame]
TESTS = $(shell find test -iname \*.test.js)
test:
@NODE_ENV=test ./node_modules/.bin/mocha \
--require should \
--reporter spec \
$(TESTS)
clean:
rm -f examples/tmp/*
.PHONY: test clean